]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: ethernet: renesas: sh_eth: use phydev from struct net_device
authorPhilippe Reynes <tremyfr@gmail.com>
Tue, 9 Aug 2016 22:04:48 +0000 (00:04 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Aug 2016 06:14:53 +0000 (23:14 -0700)
The private structure contain a pointer to phydev, but the structure
net_device already contain such pointer. So we can remove the pointer
phy_dev in the private structure, and update the driver to use the
one contained in struct net_device.

Signed-off-by: Philippe Reynes <tremyfr@gmail.com>
Tested-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/renesas/sh_eth.c
drivers/net/ethernet/renesas/sh_eth.h

index 799d58d86e6dcb86fc23c125abbbbc317720e2b7..901ed361e5d1e577877bb9c6aef26fd57feb91b8 100644 (file)
@@ -1723,7 +1723,7 @@ static int sh_eth_poll(struct napi_struct *napi, int budget)
 static void sh_eth_adjust_link(struct net_device *ndev)
 {
        struct sh_eth_private *mdp = netdev_priv(ndev);
-       struct phy_device *phydev = mdp->phydev;
+       struct phy_device *phydev = ndev->phydev;
        int new_state = 0;
 
        if (phydev->link) {
@@ -1800,22 +1800,19 @@ static int sh_eth_phy_init(struct net_device *ndev)
 
        phy_attached_info(phydev);
 
-       mdp->phydev = phydev;
-
        return 0;
 }
 
 /* PHY control start function */
 static int sh_eth_phy_start(struct net_device *ndev)
 {
-       struct sh_eth_private *mdp = netdev_priv(ndev);
        int ret;
 
        ret = sh_eth_phy_init(ndev);
        if (ret)
                return ret;
 
-       phy_start(mdp->phydev);
+       phy_start(ndev->phydev);
 
        return 0;
 }
@@ -1827,11 +1824,11 @@ static int sh_eth_get_settings(struct net_device *ndev,
        unsigned long flags;
        int ret;
 
-       if (!mdp->phydev)
+       if (!ndev->phydev)
                return -ENODEV;
 
        spin_lock_irqsave(&mdp->lock, flags);
-       ret = phy_ethtool_gset(mdp->phydev, ecmd);
+       ret = phy_ethtool_gset(ndev->phydev, ecmd);
        spin_unlock_irqrestore(&mdp->lock, flags);
 
        return ret;
@@ -1844,7 +1841,7 @@ static int sh_eth_set_settings(struct net_device *ndev,
        unsigned long flags;
        int ret;
 
-       if (!mdp->phydev)
+       if (!ndev->phydev)
                return -ENODEV;
 
        spin_lock_irqsave(&mdp->lock, flags);
@@ -1852,7 +1849,7 @@ static int sh_eth_set_settings(struct net_device *ndev,
        /* disable tx and rx */
        sh_eth_rcv_snd_disable(ndev);
 
-       ret = phy_ethtool_sset(mdp->phydev, ecmd);
+       ret = phy_ethtool_sset(ndev->phydev, ecmd);
        if (ret)
                goto error_exit;
 
@@ -2067,11 +2064,11 @@ static int sh_eth_nway_reset(struct net_device *ndev)
        unsigned long flags;
        int ret;
 
-       if (!mdp->phydev)
+       if (!ndev->phydev)
                return -ENODEV;
 
        spin_lock_irqsave(&mdp->lock, flags);
-       ret = phy_start_aneg(mdp->phydev);
+       ret = phy_start_aneg(ndev->phydev);
        spin_unlock_irqrestore(&mdp->lock, flags);
 
        return ret;
@@ -2408,10 +2405,9 @@ static int sh_eth_close(struct net_device *ndev)
        sh_eth_dev_exit(ndev);
 
        /* PHY Disconnect */
-       if (mdp->phydev) {
-               phy_stop(mdp->phydev);
-               phy_disconnect(mdp->phydev);
-               mdp->phydev = NULL;
+       if (ndev->phydev) {
+               phy_stop(ndev->phydev);
+               phy_disconnect(ndev->phydev);
        }
 
        free_irq(ndev->irq, ndev);
@@ -2429,8 +2425,7 @@ static int sh_eth_close(struct net_device *ndev)
 /* ioctl to device function */
 static int sh_eth_do_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
 {
-       struct sh_eth_private *mdp = netdev_priv(ndev);
-       struct phy_device *phydev = mdp->phydev;
+       struct phy_device *phydev = ndev->phydev;
 
        if (!netif_running(ndev))
                return -EINVAL;
index c62380e34a1d077d6e44e6111b3af86fad27c91e..d050f37f3e0fb802b5063b2a1421857f77e34c87 100644 (file)
@@ -518,7 +518,6 @@ struct sh_eth_private {
        /* MII transceiver section. */
        u32 phy_id;                     /* PHY ID */
        struct mii_bus *mii_bus;        /* MDIO bus control */
-       struct phy_device *phydev;      /* PHY device control */
        int link;
        phy_interface_t phy_interface;
        int msg_enable;