diff options
Diffstat (limited to 'drivers/net/wireless/orinoco/orinoco.h')
-rw-r--r-- | drivers/net/wireless/orinoco/orinoco.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/net/wireless/orinoco/orinoco.h b/drivers/net/wireless/orinoco/orinoco.h index ff6b7b1d421d..f1901d6e6af8 100644 --- a/drivers/net/wireless/orinoco/orinoco.h +++ b/drivers/net/wireless/orinoco/orinoco.h | |||
@@ -190,12 +190,21 @@ extern void free_orinocodev(struct orinoco_private *priv); | |||
190 | extern int orinoco_init(struct orinoco_private *priv); | 190 | extern int orinoco_init(struct orinoco_private *priv); |
191 | extern int orinoco_if_add(struct orinoco_private *priv, | 191 | extern int orinoco_if_add(struct orinoco_private *priv, |
192 | unsigned long base_addr, | 192 | unsigned long base_addr, |
193 | unsigned int irq); | 193 | unsigned int irq, |
194 | const struct net_device_ops *ops); | ||
194 | extern void orinoco_if_del(struct orinoco_private *priv); | 195 | extern void orinoco_if_del(struct orinoco_private *priv); |
195 | extern int orinoco_up(struct orinoco_private *priv); | 196 | extern int orinoco_up(struct orinoco_private *priv); |
196 | extern void orinoco_down(struct orinoco_private *priv); | 197 | extern void orinoco_down(struct orinoco_private *priv); |
197 | extern irqreturn_t orinoco_interrupt(int irq, void *dev_id); | 198 | extern irqreturn_t orinoco_interrupt(int irq, void *dev_id); |
198 | 199 | ||
200 | /* Common ndo functions exported for reuse by orinoco_usb */ | ||
201 | int orinoco_open(struct net_device *dev); | ||
202 | int orinoco_stop(struct net_device *dev); | ||
203 | struct net_device_stats *orinoco_get_stats(struct net_device *dev); | ||
204 | void orinoco_set_multicast_list(struct net_device *dev); | ||
205 | int orinoco_change_mtu(struct net_device *dev, int new_mtu); | ||
206 | void orinoco_tx_timeout(struct net_device *dev); | ||
207 | |||
199 | /********************************************************************/ | 208 | /********************************************************************/ |
200 | /* Locking and synchronization functions */ | 209 | /* Locking and synchronization functions */ |
201 | /********************************************************************/ | 210 | /********************************************************************/ |