eal: remove forward declaration of generic driver
authorThomas Monjalon <thomas@monjalon.net>
Thu, 4 May 2017 15:44:38 +0000 (17:44 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 4 May 2017 15:46:58 +0000 (17:46 +0200)
We can just move rte_driver definition before rte_device
(which depends on rte_driver).

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
lib/librte_eal/common/include/rte_dev.h

index b63d054..7590598 100644 (file)
@@ -123,8 +123,14 @@ struct rte_mem_resource {
        void *addr;         /**< Virtual address, NULL when not mapped. */
 };
 
-/* Forward declaration */
-struct rte_driver;
+/**
+ * A structure describing a device driver.
+ */
+struct rte_driver {
+       TAILQ_ENTRY(rte_driver) next;  /**< Next in list. */
+       const char *name;                   /**< Driver name. */
+       const char *alias;              /**< Driver alias. */
+};
 
 /**
  * A structure describing a generic device.
@@ -137,15 +143,6 @@ struct rte_device {
        struct rte_devargs *devargs;  /**< Device user arguments */
 };
 
-/**
- * A structure describing a device driver.
- */
-struct rte_driver {
-       TAILQ_ENTRY(rte_driver) next;  /**< Next in list. */
-       const char *name;                   /**< Driver name. */
-       const char *alias;              /**< Driver alias. */
-};
-
 /**
  * Initialize a driver specified by name.
  *