raw/ifpga: remove unneeded compiler flags

The warning disable flags for the base driver code were copy-pasted from
another source, and are actually unnecessary for this driver. Therefore
remove them.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Luca Boccassi <bluca@debian.org>
This commit is contained in:
Bruce Richardson 2019-10-07 15:30:11 +01:00 committed by Thomas Monjalon
parent 47cce54ba8
commit f20056387d

View File

@ -23,17 +23,6 @@ sources = [
'opae_eth_group.c',
]
error_cflags = ['-Wno-sign-compare', '-Wno-unused-value',
'-Wno-format', '-Wno-error=format-security',
'-Wno-strict-aliasing', '-Wno-unused-but-set-variable'
]
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('ifpga_rawdev_base', sources,
dependencies: static_rte_eal,
c_args: c_args)