aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2007-11-28 21:58:06 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:04:26 -0500
commit8304b633c5e8c9ba34d3cc7f24f52434d3a3b93b (patch)
tree86bcca546f669fed53b759163d5831aa371099fd
parent5d8949448b68b3b355036c8061e3282388826ec5 (diff)
pasemi_mac: Print warning when not attaching to a PHY
pasemi_mac: Print warning when not attaching to a PHY Print a warning on the console when not connecting to a phy for an interface. It turns out to be a pretty common problem when someone gets the MDIO info wrong in their device tree, resulting in the macs running at a fixed 1Gbit FD. Signed-off-by: Olof Johansson <olof@lixom.net> Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r--drivers/net/pasemi_mac.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/pasemi_mac.c b/drivers/net/pasemi_mac.c
index 07475bb7d860..7345a81bb2c6 100644
--- a/drivers/net/pasemi_mac.c
+++ b/drivers/net/pasemi_mac.c
@@ -1064,11 +1064,12 @@ static int pasemi_mac_open(struct net_device *dev)
1064 write_mac_reg(mac, PAS_MAC_CFG_PCFG, flags); 1064 write_mac_reg(mac, PAS_MAC_CFG_PCFG, flags);
1065 1065
1066 ret = pasemi_mac_phy_init(dev); 1066 ret = pasemi_mac_phy_init(dev);
1067 /* Some configs don't have PHYs (XAUI etc), so don't complain about 1067 /* Warn for missing PHY on SGMII (1Gig) ports.
1068 * failed init due to -ENODEV.
1069 */ 1068 */
1070 if (ret && ret != -ENODEV) 1069 if (ret && mac->type == MAC_TYPE_GMAC) {
1071 dev_warn(&mac->pdev->dev, "phy init failed: %d\n", ret); 1070 dev_warn(&mac->pdev->dev, "PHY init failed: %d.\n", ret);
1071 dev_warn(&mac->pdev->dev, "Defaulting to 1Gbit full duplex\n");
1072 }
1072 1073
1073 netif_start_queue(dev); 1074 netif_start_queue(dev);
1074 napi_enable(&mac->napi); 1075 napi_enable(&mac->napi);