diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-03-20 15:35:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-21 22:19:14 -0400 |
commit | 92bcd4fe9a63e8785a4f6ba4262ee601c271a70b (patch) | |
tree | b58daea58f31ee1c86dbe55b0a0a790420b1e4f8 /net/irda | |
parent | fe8114e8e1d15ba07ddcaebc4741957a1546f307 (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.c | 5 |
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 | ||