X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Finclude%2Frte_dev.h;h=f7e3a104a4e9055754dd79aefed7ff62260dd5a0;hb=6bc2415c3387ae72f2ce3677f0e3540e734583d5;hp=d89f1a50606dffd6e99bb61553dedcf8bd5ccf0c;hpb=78aecefed955917753bfb6f44ae970dde4c652d0;p=dpdk.git diff --git a/lib/librte_eal/common/include/rte_dev.h b/lib/librte_eal/common/include/rte_dev.h index d89f1a5060..f7e3a104a4 100644 --- a/lib/librte_eal/common/include/rte_dev.h +++ b/lib/librte_eal/common/include/rte_dev.h @@ -62,16 +62,6 @@ typedef int (rte_dev_init_t)(const char *name, const char *args); enum pmd_type { PMD_VDEV = 0, PMD_PDEV = 1, - PMD_BDEV = 2, /**< Poll Mode Driver Bonded Device*/ -}; - -#define PMD_BOND_NAME "eth_bond" - -/** - * Driver initialization */ -enum pmd_init_priority { - PMD_INIT_PRE_PCI_PROBE = 0, - PMD_INIT_POST_PCI_PROBE = 1, }; /** @@ -103,9 +93,9 @@ void rte_eal_driver_register(struct rte_driver *driver); void rte_eal_driver_unregister(struct rte_driver *driver); /** - * Initialize all the registered drivers in this process + * Initalize all the registered drivers in this process */ -int rte_eal_dev_init(uint8_t init_priority); +int rte_eal_dev_init(void); #define PMD_REGISTER_DRIVER(d)\ void devinitfn_ ##d(void);\