net/ixgbe: fix build when vector driver disabled
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 16 Apr 2018 13:39:11 +0000 (14:39 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 16 Apr 2018 16:57:03 +0000 (18:57 +0200)
commit5bb7e9dbca02a2570885efe57baafc3a1dddd7cd
tree0a3c67ca9082ce956b5ddf04bb38aba33148edd0
parent9e596d880fd5b71ca0b9e9e5539f9dc5b99ff77a
net/ixgbe: fix build when vector driver disabled

The new functions for Rx and Tx offloads should not be inside the
conditional block for the vector driver, otherwise compile errors occur
when vector driver is disabled. For example:

  ixgbe_ethdev.c:3636:36: error:
implicit declaration of function ‘ixgbe_get_rx_queue_offloads’;

This shows up as an error when doing ARM builds using meson as the vector
driver is not (yet) enabled for those builds.

Fixes: 51215925a32f ("net/ixgbe: convert to new Tx offloads API")
Fixes: ec3b1124d14d ("net/ixgbe: convert to new Rx offloads API")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/net/ixgbe/ixgbe_rxtx.h