bus: fix driver registration
authorThomas Monjalon <thomas@monjalon.net>
Fri, 7 Jul 2017 00:03:07 +0000 (02:03 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Sat, 8 Jul 2017 20:27:01 +0000 (22:27 +0200)
commit8d73e58f0b2cfe15373407119b8b621cb7c88eee
tree8db29e255b23dcfbbf17eab780a747f6450bdb63
parentb17e43295120f6cd1f299091f2e2167853101584
bus: fix driver registration

The bus name was stored with embedded double quotes.
Indeed the bus name is given with a string in a macro,
which is not used elsewhere.
These macros are useless because the buses are drivers,
so they must not have any API for the application writer.
The registration can be done with a hardcoded value without quotes.

There is another (small) benefit of not using macros for driver names:
it is to have a meaningful constructor function name.
For instance, it was businitfn_PCI_BUS_NAME instead of businitfn_pci.

The bus registration macro is also changed to use
the new RTE_INIT_PRIO macro, similar to RTE_INIT used for other drivers.
The priority is the highest (101) in order to be sure that the bus driver
is registered before its device drivers.

Fixes: 0fd1a0eaae19 ("pci: add bus driver")
Fixes: fea892e35f21 ("bus/vdev: use standard bus registration")
Fixes: 7e7df6d0a41d ("bus/fslmc: introduce fsl-mc bus driver")

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
drivers/bus/fslmc/fslmc_bus.c
drivers/bus/fslmc/rte_fslmc.h
lib/librte_eal/common/eal_common_bus.c
lib/librte_eal/common/eal_common_dev.c
lib/librte_eal/common/eal_common_pci.c
lib/librte_eal/common/eal_common_vdev.c
lib/librte_eal/common/include/rte_bus.h
lib/librte_eal/common/include/rte_eal.h
lib/librte_eal/common/include/rte_pci.h
lib/librte_eal/common/include/rte_vdev.h