aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMahesh Mahadevan <r9aadq@freescale.com>2011-10-24 09:46:13 -0500
committerEric Miao <eric.miao@canonical.com>2011-11-10 07:38:56 +0800
commitea25cdc0f7af1943c3c37265cdb2d1c9c373e37f (patch)
tree51e9c47e03d46a24c2e245cbf0b922f85d29c9d6
parentfd8960af7b9dc758a28b23f246a18c911e4a05d1 (diff)
ENGR00160701 Fix the Micrel PHY driver
Received a fix from Micrel to fix their driver. Without this patch the Micrel PHY does not get recognized during boot Signed-off-by: Mahesh Mahadevan <r9aadq@freescale.com>
-rw-r--r--drivers/net/phy/micrel.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index 0fd1678bc5a..f7bc179bb9d 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -108,7 +108,7 @@ static int kszphy_config_init(struct phy_device *phydev)
static struct phy_driver ks8737_driver = {
.phy_id = PHY_ID_KS8737,
- .phy_id_mask = 0x00fffff0,
+ .phy_id_mask = 0x00ffffff,
.name = "Micrel KS8737",
.features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
.flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
@@ -122,7 +122,7 @@ static struct phy_driver ks8737_driver = {
static struct phy_driver ks8041_driver = {
.phy_id = PHY_ID_KS8041,
- .phy_id_mask = 0x00fffff0,
+ .phy_id_mask = 0x00ffffff,
.name = "Micrel KS8041",
.features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
| SUPPORTED_Asym_Pause),
@@ -137,7 +137,7 @@ static struct phy_driver ks8041_driver = {
static struct phy_driver ks8051_driver = {
.phy_id = PHY_ID_KS8051,
- .phy_id_mask = 0x00fffff0,
+ .phy_id_mask = 0x00ffffff,
.name = "Micrel KS8051",
.features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
| SUPPORTED_Asym_Pause),
@@ -153,7 +153,7 @@ static struct phy_driver ks8051_driver = {
static struct phy_driver ks8001_driver = {
.phy_id = PHY_ID_KS8001,
.name = "Micrel KS8001 or KS8721",
- .phy_id_mask = 0x00fffff0,
+ .phy_id_mask = 0x00ffffff,
.features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
.flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
.config_init = kszphy_config_init,
@@ -166,7 +166,7 @@ static struct phy_driver ks8001_driver = {
static struct phy_driver ksz9021_driver = {
.phy_id = PHY_ID_KSZ9021,
- .phy_id_mask = 0x000fff10,
+ .phy_id_mask = 0x00ffffff,
.name = "Micrel KSZ9021 Gigabit PHY",
.features = (PHY_GBIT_FEATURES | SUPPORTED_Pause
| SUPPORTED_Asym_Pause),
@@ -232,11 +232,11 @@ MODULE_AUTHOR("David J. Choi");
MODULE_LICENSE("GPL");
static struct mdio_device_id __maybe_unused micrel_tbl[] = {
- { PHY_ID_KSZ9021, 0x000fff10 },
- { PHY_ID_KS8001, 0x00fffff0 },
- { PHY_ID_KS8737, 0x00fffff0 },
- { PHY_ID_KS8041, 0x00fffff0 },
- { PHY_ID_KS8051, 0x00fffff0 },
+ { PHY_ID_KSZ9021, 0x00ffffff },
+ { PHY_ID_KS8001, 0x00ffffff },
+ { PHY_ID_KS8737, 0x00ffffff },
+ { PHY_ID_KS8041, 0x00ffffff },
+ { PHY_ID_KS8051, 0x00ffffff },
{ }
};