ixgbe/base: fix build with debug

The upgraded base driver, especially commit 9ba80bde4c, didn't compile if
CONFIG_RTE_LIBRTE_IXGBE_DEBUG_DRIVER is enabled.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Thomas Monjalon 2014-07-02 15:10:59 +02:00
parent 187785f62e
commit cedfe35321

View File

@ -63,8 +63,8 @@
#define DEBUGOUT7(S, args...) DEBUGOUT(S, ##args)
#define ERROR_REPORT1(e, S, args...) DEBUGOUT(S, ##args)
#define ERROR_REPORT2 DEBUGOUT2
#define ERROR_REPORT3 DEBUGOUT3
#define ERROR_REPORT2(e, S, args...) DEBUGOUT(S, ##args)
#define ERROR_REPORT3(e, S, args...) DEBUGOUT(S, ##args)
#define FALSE 0
#define TRUE 1