Fixes: 9f3eb8826450 ("ethdev: hide eth dev related structures")

Signed-off-by: Andrew Rybchenko <andrew.rybche...@oktetlabs.ru>
---
 lib/ethdev/ethdev_driver.h | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/lib/ethdev/ethdev_driver.h b/lib/ethdev/ethdev_driver.h
index e5c7d08160..af9f379692 100644
--- a/lib/ethdev/ethdev_driver.h
+++ b/lib/ethdev/ethdev_driver.h
@@ -46,7 +46,7 @@ struct rte_eth_dev {
        eth_tx_burst_t tx_pkt_burst; /**< Pointer to PMD transmit function. */
        /** Pointer to PMD transmit prepare function. */
        eth_tx_prep_t tx_pkt_prepare;
-       /** Get the number of used RX descriptors. */
+       /** Get the number of used Rx descriptors. */
        eth_rx_queue_count_t rx_queue_count;
        /** Check the status of a Rx descriptor. */
        eth_rx_descriptor_status_t rx_descriptor_status;
@@ -92,10 +92,10 @@ struct rte_eth_dev_owner;
 struct rte_eth_dev_data {
        char name[RTE_ETH_NAME_MAX_LEN]; /**< Unique identifier name */
 
-       void **rx_queues; /**< Array of pointers to RX queues. */
-       void **tx_queues; /**< Array of pointers to TX queues. */
-       uint16_t nb_rx_queues; /**< Number of RX queues. */
-       uint16_t nb_tx_queues; /**< Number of TX queues. */
+       void **rx_queues; /**< Array of pointers to Rx queues. */
+       void **tx_queues; /**< Array of pointers to Tx queues. */
+       uint16_t nb_rx_queues; /**< Number of Rx queues. */
+       uint16_t nb_tx_queues; /**< Number of Tx queues. */
 
        struct rte_eth_dev_sriov sriov;    /**< SRIOV data */
 
@@ -105,10 +105,10 @@ struct rte_eth_dev_data {
        struct rte_eth_link dev_link;   /**< Link-level information & status. */
        struct rte_eth_conf dev_conf;   /**< Configuration applied to device. */
        uint16_t mtu;                   /**< Maximum Transmission Unit. */
-       /** Common RX buffer size handled by all queues. */
+       /** Common Rx buffer size handled by all queues. */
        uint32_t min_rx_buf_size;
 
-       uint64_t rx_mbuf_alloc_failed; /**< RX ring mbuf allocation failures. */
+       uint64_t rx_mbuf_alloc_failed; /**< Rx ring mbuf allocation failures. */
        /** Device Ethernet link address. @see rte_eth_dev_release_port(). */
        struct rte_ether_addr *mac_addrs;
        /** Bitmap associating MAC addresses to pools. */
@@ -121,15 +121,15 @@ struct rte_eth_dev_data {
        uint16_t port_id;           /**< Device [external] port identifier. */
 
        __extension__
-       uint8_t /** RX promiscuous mode ON(1) / OFF(0). */
+       uint8_t /** Rx promiscuous mode ON(1) / OFF(0). */
                promiscuous   : 1,
-               /** RX of scattered packets is ON(1) / OFF(0) */
+               /** Rx of scattered packets is ON(1) / OFF(0) */
                scattered_rx : 1,
-               /** RX all multicast mode ON(1) / OFF(0). */
+               /** Rx all multicast mode ON(1) / OFF(0). */
                all_multicast : 1,
                /** Device state: STARTED(1) / STOPPED(0). */
                dev_started : 1,
-               /** RX LRO is ON(1) / OFF(0) */
+               /** Rx LRO is ON(1) / OFF(0) */
                lro         : 1,
                /**
                 * Indicates whether the device is configured.
-- 
2.30.2

Reply via email to