From: Valentine Barshak Date: Mon, 5 Oct 2009 03:27:56 +0000 (+0000) Subject: pasemi_mac: ethtool get settings fix X-Git-Tag: 2.1b_release~10358^2~178 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49682864b0270a0578b8321ed2686dc471ec37f1;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git pasemi_mac: ethtool get settings fix Not all pasemi mac interfaces can have a phy attached. For example, XAUI has no phy and phydev is NULL for it. In this case ethtool get settings causes kernel crash. Fix it by returning -EOPNOTSUPP if there's no PHY attached. Signed-off-by: Valentine Barshak Acked-by: Olof Johansson Signed-off-by: David S. Miller --- diff --git a/drivers/net/pasemi_mac_ethtool.c b/drivers/net/pasemi_mac_ethtool.c index 064a4fe..28a8622 100644 --- a/drivers/net/pasemi_mac_ethtool.c +++ b/drivers/net/pasemi_mac_ethtool.c @@ -71,6 +71,9 @@ pasemi_mac_ethtool_get_settings(struct net_device *netdev, struct pasemi_mac *mac = netdev_priv(netdev); struct phy_device *phydev = mac->phydev; + if (!phydev) + return -EOPNOTSUPP; + return phy_ethtool_gset(phydev, cmd); }