eal: revert link bonding specific initialization
[dpdk.git] / lib / librte_eal / common / include / rte_dev.h
index d89f1a5..f7e3a10 100644 (file)
@@ -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);\