4851ef2b40
The vdev bus interface is for drivers only. Mark as internal and move the header in the driver headers list. While at it, cleanup the code: - fix indentation, - remove unneeded reference to bus specific singleton object, - 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> Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
18 lines
193 B
Plaintext
18 lines
193 B
Plaintext
DPDK_23 {
|
|
global:
|
|
|
|
rte_vdev_add_custom_scan;
|
|
rte_vdev_init;
|
|
rte_vdev_remove_custom_scan;
|
|
rte_vdev_uninit;
|
|
|
|
local: *;
|
|
};
|
|
|
|
INTERNAL {
|
|
global:
|
|
|
|
rte_vdev_register;
|
|
rte_vdev_unregister;
|
|
};
|