The ifpga bus interface is for drivers only. Mark as internal and move the header in the driver headers list. While at it, cleanup the code: - remove unneeded list head structure type, - reorder the definitions and macro manipulating the bus singleton object, - remove inclusion of rte_bus.h and fix the code that relied on implicit inclusion, Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Rosen Xu <rosen.xu@intel.com>
13 lines
298 B
Meson
13 lines
298 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2018 Intel Corporation
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
deps += ['pci', 'kvargs', 'rawdev']
|
|
driver_sdk_headers += files('bus_ifpga_driver.h')
|
|
sources = files('ifpga_bus.c')
|