aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sh_eth.c
diff options
context:
space:
mode:
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>2011-03-07 16:59:45 -0500
committerDavid S. Miller <davem@davemloft.net>2011-03-14 17:10:15 -0400
commite47c90523484518aac30498150e427d824ace705 (patch)
tree04a57da9305eca9a5202fd5f16627930b922e4a1 /drivers/net/sh_eth.c
parentc5ed53687b39c195b4730de8c0355c1b78054ba6 (diff)
net: sh_eth: modify the PHY_INTERFACE_MODE
The previous code had hardcoded the PHY_INTERFACE_MODE_MII of phy_connect. So some Gigabit PHYs will not behave correctly. The patch adds the phy_interface in sh_eth_plat_data, so we can select the phy interface. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sh_eth.c')
-rw-r--r--drivers/net/sh_eth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c
index 6734311e56e4..5d28ce68f357 100644
--- a/drivers/net/sh_eth.c
+++ b/drivers/net/sh_eth.c
@@ -1071,7 +1071,7 @@ static int sh_eth_phy_init(struct net_device *ndev)
1071 1071
1072 /* Try connect to PHY */ 1072 /* Try connect to PHY */
1073 phydev = phy_connect(ndev, phy_id, sh_eth_adjust_link, 1073 phydev = phy_connect(ndev, phy_id, sh_eth_adjust_link,
1074 0, PHY_INTERFACE_MODE_MII); 1074 0, mdp->phy_interface);
1075 if (IS_ERR(phydev)) { 1075 if (IS_ERR(phydev)) {
1076 dev_err(&ndev->dev, "phy_connect failed\n"); 1076 dev_err(&ndev->dev, "phy_connect failed\n");
1077 return PTR_ERR(phydev); 1077 return PTR_ERR(phydev);
@@ -1669,6 +1669,7 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
1669 pd = (struct sh_eth_plat_data *)(pdev->dev.platform_data); 1669 pd = (struct sh_eth_plat_data *)(pdev->dev.platform_data);
1670 /* get PHY ID */ 1670 /* get PHY ID */
1671 mdp->phy_id = pd->phy; 1671 mdp->phy_id = pd->phy;
1672 mdp->phy_interface = pd->phy_interface;
1672 /* EDMAC endian */ 1673 /* EDMAC endian */
1673 mdp->edmac_endian = pd->edmac_endian; 1674 mdp->edmac_endian = pd->edmac_endian;
1674 mdp->no_ether_link = pd->no_ether_link; 1675 mdp->no_ether_link = pd->no_ether_link;