diff options
Diffstat (limited to 'src/plugins/avf/avf.h')
-rw-r--r-- | src/plugins/avf/avf.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/avf/avf.h b/src/plugins/avf/avf.h index 1dc5d96ec72..eeb4fa21759 100644 --- a/src/plugins/avf/avf.h +++ b/src/plugins/avf/avf.h @@ -288,6 +288,17 @@ typedef struct avf_rx_vector_entry_t rxve; } avf_input_trace_t; +#define foreach_avf_tx_func_error \ +_(NO_FREE_SLOTS, "no free tx slots") + +typedef enum +{ +#define _(f,s) AVF_TX_ERROR_##f, + foreach_avf_tx_func_error +#undef _ + AVF_TX_N_ERROR, +} avf_tx_func_error_t; + #endif /* AVF_H */ /* |