phy: Use macros instead of hardcoded values in marvell phy driver
authorMichal Simek <michal.simek@xilinx.com>
Thu, 30 May 2013 20:08:25 +0000 (20:08 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 31 May 2013 07:48:22 +0000 (00:48 -0700)
Use macros from linux/marvell_phy.h instead of duplicate
magic phy ID in the driver.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/marvell.c

index 202fe1ff1987950effe6e0a0426894a0ad8dea78..371353c81f3ce4ce0ad4c83f77be546f0406058d 100644 (file)
@@ -958,15 +958,15 @@ module_init(marvell_init);
 module_exit(marvell_exit);
 
 static struct mdio_device_id __maybe_unused marvell_tbl[] = {
-       { 0x01410c60, 0xfffffff0 },
-       { 0x01410c90, 0xfffffff0 },
-       { 0x01410cc0, 0xfffffff0 },
-       { 0x01410e10, 0xfffffff0 },
-       { 0x01410cb0, 0xfffffff0 },
-       { 0x01410cd0, 0xfffffff0 },
-       { 0x01410e50, 0xfffffff0 },
-       { 0x01410e30, 0xfffffff0 },
-       { 0x01410e90, 0xfffffff0 },
+       { MARVELL_PHY_ID_88E1101, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1112, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1111, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1118, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1121R, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1145, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1149R, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1240, MARVELL_PHY_ID_MASK },
+       { MARVELL_PHY_ID_88E1318S, MARVELL_PHY_ID_MASK },
        { }
 };