]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ftgmac100: Reorder struct fields and comment
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 5 Apr 2017 02:28:43 +0000 (12:28 +1000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 6 Apr 2017 19:38:04 +0000 (12:38 -0700)
Reorder the fields in struct ftgmac in slightly more logical
groups. Will make more sense as I add/remove some.

No code change.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/faraday/ftgmac100.c

index 99aafcc33a0be30f58ea88d0d54269c2e005c6d3..89148246a7390bcd449b3c000588adee7ccc2578 100644 (file)
@@ -52,34 +52,39 @@ struct ftgmac100_descs {
 };
 
 struct ftgmac100 {
+       /* Registers */
        struct resource *res;
        void __iomem *base;
 
        struct ftgmac100_descs *descs;
        dma_addr_t descs_dma_addr;
 
+       /* Rx ring */
        struct page *rx_pages[RX_QUEUE_ENTRIES];
-
        unsigned int rx_pointer;
+       u32 rxdes0_edorr_mask;
+
+       /* Tx ring */
        unsigned int tx_clean_pointer;
        unsigned int tx_pointer;
        unsigned int tx_pending;
-
+       u32 txdes0_edotr_mask;
        spinlock_t tx_lock;
 
+       /* Component structures */
        struct net_device *netdev;
        struct device *dev;
        struct ncsi_dev *ndev;
        struct napi_struct napi;
-
        struct mii_bus *mii_bus;
+
+       /* Link management */
        int old_speed;
-       int int_mask_all;
        bool use_ncsi;
-       bool enabled;
 
-       u32 rxdes0_edorr_mask;
-       u32 txdes0_edotr_mask;
+       /* Misc */
+       int int_mask_all;
+       bool enabled;
 };
 
 static int ftgmac100_alloc_rx_page(struct ftgmac100 *priv,