|
| | MODULE_AUTHOR ("Pavel Roskin <[email protected]> & ""David Gibson <hermes@gibson.dropbear.id.au>") |
| |
| | MODULE_DESCRIPTION ("Driver for Lucent Orinoco, Prism II based ""and similar wireless cards") |
| |
| | MODULE_LICENSE ("Dual MPL/GPL") |
| |
| | module_param (suppress_linkstatus, bool, 0644) |
| |
| | MODULE_PARM_DESC (suppress_linkstatus,"Don't log link status changes") |
| |
| | module_param (ignore_disconnect, int, 0644) |
| |
| | MODULE_PARM_DESC (ignore_disconnect,"Don't report lost link to the network layer") |
| |
| | module_param (force_monitor, int, 0644) |
| |
| | MODULE_PARM_DESC (force_monitor,"Allow monitor mode for all firmware versions") |
| |
| void | set_port_type (struct orinoco_private *priv) |
| |
| int | orinoco_open (struct net_device *dev) |
| |
| | EXPORT_SYMBOL (orinoco_open) |
| |
| int | orinoco_stop (struct net_device *dev) |
| |
| | EXPORT_SYMBOL (orinoco_stop) |
| |
| struct net_device_stats * | orinoco_get_stats (struct net_device *dev) |
| |
| | EXPORT_SYMBOL (orinoco_get_stats) |
| |
| void | orinoco_set_multicast_list (struct net_device *dev) |
| |
| | EXPORT_SYMBOL (orinoco_set_multicast_list) |
| |
| int | orinoco_change_mtu (struct net_device *dev, int new_mtu) |
| |
| | EXPORT_SYMBOL (orinoco_change_mtu) |
| |
| int | orinoco_process_xmit_skb (struct sk_buff *skb, struct net_device *dev, struct orinoco_private *priv, int *tx_control, u8 *mic_buf) |
| |
| | EXPORT_SYMBOL (orinoco_process_xmit_skb) |
| |
| void | orinoco_tx_timeout (struct net_device *dev) |
| |
| | EXPORT_SYMBOL (orinoco_tx_timeout) |
| |
| void | __orinoco_ev_rx (struct net_device *dev, struct hermes *hw) |
| |
| | EXPORT_SYMBOL (__orinoco_ev_rx) |
| |
| void | __orinoco_ev_info (struct net_device *dev, struct hermes *hw) |
| |
| | EXPORT_SYMBOL (__orinoco_ev_info) |
| |
| void | orinoco_reset (struct work_struct *work) |
| |
| int | orinoco_commit (struct orinoco_private *priv) |
| |
| irqreturn_t | orinoco_interrupt (int irq, void *dev_id) |
| |
| | EXPORT_SYMBOL (orinoco_interrupt) |
| |
| int | orinoco_init (struct orinoco_private *priv) |
| |
| | EXPORT_SYMBOL (orinoco_init) |
| |
| struct orinoco_private * | alloc_orinocodev (int sizeof_card, struct device *device, int(*hard_reset)(struct orinoco_private *), int(*stop_fw)(struct orinoco_private *, int)) |
| |
| | EXPORT_SYMBOL (alloc_orinocodev) |
| |
| int | orinoco_if_add (struct orinoco_private *priv, unsigned long base_addr, unsigned int irq, const struct net_device_ops *ops) |
| |
| | EXPORT_SYMBOL (orinoco_if_add) |
| |
| void | orinoco_if_del (struct orinoco_private *priv) |
| |
| | EXPORT_SYMBOL (orinoco_if_del) |
| |
| void | free_orinocodev (struct orinoco_private *priv) |
| |
| | EXPORT_SYMBOL (free_orinocodev) |
| |
| int | orinoco_up (struct orinoco_private *priv) |
| |
| | EXPORT_SYMBOL (orinoco_up) |
| |
| void | orinoco_down (struct orinoco_private *priv) |
| |
| | EXPORT_SYMBOL (orinoco_down) |
| |
| | module_init (init_orinoco) |
| |
| | module_exit (exit_orinoco) |
| |