ramips: make PHY initialization more descriptive
authorDavid Bauer <mail@david-bauer.net>
Sun, 6 Jun 2021 17:45:24 +0000 (19:45 +0200)
committerDavid Bauer <mail@david-bauer.net>
Mon, 7 Jun 2021 22:39:07 +0000 (00:39 +0200)
The basic mode control register of the ESW PHYs is modified in this
codeblock. Use the respective macros to make this code more readable.

Signed-off-by: David Bauer <mail@david-bauer.net>
target/linux/ramips/files/drivers/net/ethernet/ralink/gsw_mt7620.c

index bd379e6c7d0e8e1b7c2b950441176a7b2a30293e..451881fc732f80193f5e4563165ed463fb7020e0 100644 (file)
@@ -13,6 +13,7 @@
  */
 
 #include <linux/module.h>
+#include <linux/mii.h>
 #include <linux/kernel.h>
 #include <linux/types.h>
 #include <linux/platform_device.h>
@@ -168,9 +169,9 @@ static void mt7620_hw_init(struct mt7620_gsw *gsw, int mdio_mode)
 
                /* turn on all PHYs */
                for (i = 0; i <= 4; i++) {
-                       val = _mt7620_mii_read(gsw, gsw->ephy_base + i, 0);
-                       val &= ~BIT(11);
-                       _mt7620_mii_write(gsw, gsw->ephy_base + i, 0, val);
+                       val = _mt7620_mii_read(gsw, gsw->ephy_base + i, MII_BMCR);
+                       val &= ~BMCR_PDOWN;
+                       _mt7620_mii_write(gsw, gsw->ephy_base + i, MII_BMCR, val);
                }
        }