diff options
author | Robert Shearman <robertshearman@gmail.com> | 2021-02-26 11:24:59 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-03-05 08:26:34 +0000 |
commit | 83a09c6b3cc2444132f90826b7e2ceb2a3f3347c (patch) | |
tree | e8b61e27e1ad8fcb65420fb9c293ee99dd6b6522 /src/plugins/marvell/pp2 | |
parent | f9e82a229179e7c76dd4548132933ac4947d37f1 (diff) |
marvell: fix implicit declaration of function
Fix compile error due to implicit declaration of
vnet_hw_if_get_rxq_poll_vector by including the header file that
declares this.
Type: fix
Fixes: b85b0df2a039b694fb2f3c09a01decfb89d7bce2
Signed-off-by: Robert Shearman <robertshearman@gmail.com>
Change-Id: I4a21743df93ffaa637641838d30b3b5c70dd79ef
Diffstat (limited to 'src/plugins/marvell/pp2')
-rw-r--r-- | src/plugins/marvell/pp2/input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/marvell/pp2/input.c b/src/plugins/marvell/pp2/input.c index d4a53fb627e..0c51d7d8ff6 100644 --- a/src/plugins/marvell/pp2/input.c +++ b/src/plugins/marvell/pp2/input.c @@ -25,6 +25,7 @@ #include <vlib/unix/unix.h> #include <vnet/ethernet/ethernet.h> #include <vnet/devices/devices.h> +#include <vnet/interface/rx_queue_funcs.h> #include <marvell/pp2/pp2.h> |