aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-08-24 06:54:20 +0000
committerDavid S. Miller <davem@davemloft.net>2010-08-24 14:50:27 -0700
commit4f2c85106883bada5167e1d42a0409e063da8895 (patch)
tree2bed1fda692d6383afd2464f08c8c4a584d1af78 /drivers
parentpxa168_eth: fix error handling in prope (diff)
downloadlinux-dev-4f2c85106883bada5167e1d42a0409e063da8895.tar.xz
linux-dev-4f2c85106883bada5167e1d42a0409e063da8895.zip
pxa168_eth: update call to phy_mii_ioctl()
The phy_mii_ioctl() function changed recently. It now takes a struct ifreq pointer directly. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/pxa168_eth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/pxa168_eth.c b/drivers/net/pxa168_eth.c
index 302fb480374b..f324b767f685 100644
--- a/drivers/net/pxa168_eth.c
+++ b/drivers/net/pxa168_eth.c
@@ -1350,7 +1350,7 @@ static int pxa168_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr,
{
struct pxa168_eth_private *pep = netdev_priv(dev);
if (pep->phy != NULL)
- return phy_mii_ioctl(pep->phy, if_mii(ifr), cmd);
+ return phy_mii_ioctl(pep->phy, ifr, cmd);
return -EOPNOTSUPP;
}