kni: fix build with gcc 6.1
Using gcc 6.1, in some cases, kni fails to compile because of unused variables: lib/librte_eal/linuxapp/kni/ixgbe_main.c:82:19: error: ‘ixgbe_copyright’ defined but not used [-Werror=unused-const-variable=] lib/librte_eal/linuxapp/kni/ixgbe_main.c:62:19: error: ‘ixgbe_driver_string’ defined but not used [-Werror=unused-const-variable=] Fixes: 3fc5ca2f6352 ("kni: initial import") Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
c175e542c0
commit
949e26c4cf
@ -59,8 +59,6 @@
|
||||
#undef CONFIG_DCA_MODULE
|
||||
|
||||
char ixgbe_driver_name[] = "ixgbe";
|
||||
static const char ixgbe_driver_string[] =
|
||||
"Intel(R) 10 Gigabit PCI Express Network Driver";
|
||||
#define DRV_HW_PERF
|
||||
|
||||
#ifndef CONFIG_IXGBE_NAPI
|
||||
@ -79,8 +77,6 @@ static const char ixgbe_driver_string[] =
|
||||
#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
|
||||
__stringify(BUILD) DRIVERNAPI DRV_HW_PERF FPGA VMDQ_TAG
|
||||
const char ixgbe_driver_version[] = DRV_VERSION;
|
||||
static const char ixgbe_copyright[] =
|
||||
"Copyright (c) 1999-2012 Intel Corporation.";
|
||||
|
||||
/* ixgbe_pci_tbl - PCI Device ID Table
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user