ramips: make PHY initialization more descriptive
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>
This commit is contained in:
		| @@ -13,6 +13,7 @@ | |||||||
|  */ |  */ | ||||||
|  |  | ||||||
| #include <linux/module.h> | #include <linux/module.h> | ||||||
|  | #include <linux/mii.h> | ||||||
| #include <linux/kernel.h> | #include <linux/kernel.h> | ||||||
| #include <linux/types.h> | #include <linux/types.h> | ||||||
| #include <linux/platform_device.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 */ | 		/* turn on all PHYs */ | ||||||
| 		for (i = 0; i <= 4; i++) { | 		for (i = 0; i <= 4; i++) { | ||||||
| 			val = _mt7620_mii_read(gsw, gsw->ephy_base + i, 0); | 			val = _mt7620_mii_read(gsw, gsw->ephy_base + i, MII_BMCR); | ||||||
| 			val &= ~BIT(11); | 			val &= ~BMCR_PDOWN; | ||||||
| 			_mt7620_mii_write(gsw, gsw->ephy_base + i, 0, val); | 			_mt7620_mii_write(gsw, gsw->ephy_base + i, MII_BMCR, val); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 David Bauer
					David Bauer