diff options
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 | ||