aboutsummaryrefslogtreecommitdiffstats
path: root/net/irda
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2009-03-20 15:35:33 -0400
committerDavid S. Miller <davem@davemloft.net>2009-03-21 22:19:14 -0400
commit92bcd4fe9a63e8785a4f6ba4262ee601c271a70b (patch)
treeb58daea58f31ee1c86dbe55b0a0a790420b1e4f8 /net/irda
parentfe8114e8e1d15ba07ddcaebc4741957a1546f307 (diff)
irda: net_device_ops ioctl fix
Need to reference net_device_ops not old pointer. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/irda')
-rw-r--r--net/irda/irda_device.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/irda/irda_device.c b/net/irda/irda_device.c
index ea319e3ddc18..bf92e1473447 100644
--- a/net/irda/irda_device.c
+++ b/net/irda/irda_device.c
@@ -149,13 +149,14 @@ int irda_device_is_receiving(struct net_device *dev)
149 149
150 IRDA_DEBUG(2, "%s()\n", __func__); 150 IRDA_DEBUG(2, "%s()\n", __func__);
151 151
152 if (!dev->do_ioctl) { 152 if (!dev->netdev_ops->ndo_do_ioctl) {
153 IRDA_ERROR("%s: do_ioctl not impl. by device driver\n", 153 IRDA_ERROR("%s: do_ioctl not impl. by device driver\n",
154 __func__); 154 __func__);
155 return -1; 155 return -1;
156 } 156 }
157 157
158 ret = dev->do_ioctl(dev, (struct ifreq *) &req, SIOCGRECEIVING); 158 ret = (dev->netdev_ops->ndo_do_ioctl)(dev, (struct ifreq *) &req,
159 SIOCGRECEIVING);
159 if (ret < 0) 160 if (ret < 0)
160 return ret; 161 return ret;
161 162