diff options
author | Marcelo Tosatti <marcelo@kvack.org> | 2007-02-10 09:25:27 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 11:00:54 -0400 |
commit | 876c9d3aeb989cf1961f2c228d309ba5dcfb1172 (patch) | |
tree | 239e9db92d13abc799c1ffc5304d8ec1503dbc61 /drivers/net/wireless/libertas/decl.h | |
parent | 35c3404efa7407811b706453f83d39b2539dcbd0 (diff) |
[PATCH] Marvell Libertas 8388 802.11b/g USB driver
Add the Marvell Libertas 8388 802.11 USB driver.
Signed-off-by: Marcelo Tosatti <marcelo@kvack.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/decl.h')
-rw-r--r-- | drivers/net/wireless/libertas/decl.h | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/decl.h b/drivers/net/wireless/libertas/decl.h new file mode 100644 index 000000000000..606bdd002be7 --- /dev/null +++ b/drivers/net/wireless/libertas/decl.h | |||
@@ -0,0 +1,83 @@ | |||
1 | /** | ||
2 | * This file contains declaration referring to | ||
3 | * functions defined in other source files | ||
4 | */ | ||
5 | |||
6 | #ifndef _WLAN_DECL_H_ | ||
7 | #define _WLAN_DECL_H_ | ||
8 | |||
9 | #include "defs.h" | ||
10 | |||
11 | /** Function Prototype Declaration */ | ||
12 | struct wlan_private; | ||
13 | struct sk_buff; | ||
14 | struct net_device; | ||
15 | |||
16 | extern char *libertas_fw_name; | ||
17 | |||
18 | void libertas_free_adapter(wlan_private * priv); | ||
19 | int libertas_set_mac_packet_filter(wlan_private * priv); | ||
20 | |||
21 | int libertas_send_null_packet(wlan_private * priv, u8 pwr_mgmt); | ||
22 | void libertas_send_tx_feedback(wlan_private * priv); | ||
23 | u8 libertas_check_last_packet_indication(wlan_private * priv); | ||
24 | |||
25 | int libertas_free_cmd_buffer(wlan_private * priv); | ||
26 | struct cmd_ctrl_node; | ||
27 | struct cmd_ctrl_node *libertas_get_free_cmd_ctrl_node(wlan_private * priv); | ||
28 | |||
29 | void libertas_set_cmd_ctrl_node(wlan_private * priv, | ||
30 | struct cmd_ctrl_node *ptempnode, | ||
31 | u32 cmd_oid, u16 wait_option, void *pdata_buf); | ||
32 | |||
33 | int libertas_prepare_and_send_command(wlan_private * priv, | ||
34 | u16 cmd_no, | ||
35 | u16 cmd_action, | ||
36 | u16 wait_option, u32 cmd_oid, void *pdata_buf); | ||
37 | |||
38 | void libertas_queue_cmd(wlan_adapter * adapter, struct cmd_ctrl_node *cmdnode, u8 addtail); | ||
39 | |||
40 | int libertas_allocate_cmd_buffer(wlan_private * priv); | ||
41 | int libertas_execute_next_command(wlan_private * priv); | ||
42 | int libertas_process_event(wlan_private * priv); | ||
43 | void libertas_interrupt(struct net_device *); | ||
44 | int libertas_set_radio_control(wlan_private * priv); | ||
45 | u32 libertas_index_to_data_rate(u8 index); | ||
46 | u8 libertas_data_rate_to_index(u32 rate); | ||
47 | void libertas_get_fwversion(wlan_adapter * adapter, char *fwversion, int maxlen); | ||
48 | |||
49 | int libertas_upload_rx_packet(wlan_private * priv, struct sk_buff *skb); | ||
50 | |||
51 | /** The proc fs interface */ | ||
52 | int libertas_process_rx_command(wlan_private * priv); | ||
53 | int libertas_process_tx(wlan_private * priv, struct sk_buff *skb); | ||
54 | void libertas_cleanup_and_insert_cmd(wlan_private * priv, | ||
55 | struct cmd_ctrl_node *ptempcmd); | ||
56 | void __libertas_cleanup_and_insert_cmd(wlan_private * priv, | ||
57 | struct cmd_ctrl_node *ptempcmd); | ||
58 | |||
59 | int libertas_set_regiontable(wlan_private * priv, u8 region, u8 band); | ||
60 | |||
61 | int libertas_process_rxed_packet(wlan_private * priv, struct sk_buff *); | ||
62 | |||
63 | void libertas_ps_sleep(wlan_private * priv, int wait_option); | ||
64 | void libertas_ps_confirm_sleep(wlan_private * priv, u16 psmode); | ||
65 | void libertas_ps_wakeup(wlan_private * priv, int wait_option); | ||
66 | |||
67 | void libertas_tx_runqueue(wlan_private *priv); | ||
68 | |||
69 | extern struct chan_freq_power *libertas_find_cfp_by_band_and_channel( | ||
70 | wlan_adapter * adapter, u8 band, u16 channel); | ||
71 | |||
72 | extern void libertas_mac_event_disconnected(wlan_private * priv); | ||
73 | |||
74 | void libertas_send_iwevcustom_event(wlan_private * priv, s8 * str); | ||
75 | |||
76 | int reset_device(wlan_private *priv); | ||
77 | /* main.c */ | ||
78 | extern struct chan_freq_power *libertas_get_region_cfp_table(u8 region, u8 band, | ||
79 | int *cfp_no); | ||
80 | wlan_private *wlan_add_card(void *card); | ||
81 | int wlan_remove_card(void *card); | ||
82 | |||
83 | #endif /* _WLAN_DECL_H_ */ | ||