diff options
Diffstat (limited to 'drivers/net/wireless/libertas/decl.h')
-rw-r--r-- | drivers/net/wireless/libertas/decl.h | 88 |
1 files changed, 48 insertions, 40 deletions
diff --git a/drivers/net/wireless/libertas/decl.h b/drivers/net/wireless/libertas/decl.h index 7dd76f8e8d2d..74187f34666f 100644 --- a/drivers/net/wireless/libertas/decl.h +++ b/drivers/net/wireless/libertas/decl.h | |||
@@ -12,71 +12,79 @@ | |||
12 | 12 | ||
13 | /** Function Prototype Declaration */ | 13 | /** Function Prototype Declaration */ |
14 | struct lbs_private; | 14 | struct lbs_private; |
15 | struct lbs_adapter; | ||
15 | struct sk_buff; | 16 | struct sk_buff; |
16 | struct net_device; | 17 | struct net_device; |
17 | 18 | ||
18 | int lbs_set_mac_packet_filter(lbs_private * priv); | 19 | int lbs_set_mac_packet_filter(struct lbs_private *priv); |
19 | 20 | ||
20 | void lbs_send_tx_feedback(lbs_private * priv); | 21 | void lbs_send_tx_feedback(struct lbs_private *priv); |
21 | 22 | ||
22 | int lbs_free_cmd_buffer(lbs_private * priv); | 23 | int lbs_free_cmd_buffer(struct lbs_private *priv); |
23 | struct cmd_ctrl_node; | 24 | struct cmd_ctrl_node; |
24 | struct cmd_ctrl_node *lbs_get_free_cmd_ctrl_node(lbs_private * priv); | 25 | struct cmd_ctrl_node *lbs_get_free_cmd_ctrl_node(struct lbs_private *priv); |
25 | 26 | ||
26 | void lbs_set_cmd_ctrl_node(lbs_private * priv, | 27 | void lbs_set_cmd_ctrl_node(struct lbs_private *priv, |
27 | struct cmd_ctrl_node *ptempnode, | 28 | struct cmd_ctrl_node *ptempnode, |
28 | u32 cmd_oid, u16 wait_option, void *pdata_buf); | 29 | u32 cmd_oid, u16 wait_option, void *pdata_buf); |
29 | 30 | ||
30 | int lbs_prepare_and_send_command(lbs_private * priv, | 31 | int lbs_prepare_and_send_command(struct lbs_private *priv, |
31 | u16 cmd_no, | 32 | u16 cmd_no, |
32 | u16 cmd_action, | 33 | u16 cmd_action, |
33 | u16 wait_option, u32 cmd_oid, void *pdata_buf); | 34 | u16 wait_option, u32 cmd_oid, void *pdata_buf); |
34 | 35 | ||
35 | void lbs_queue_cmd(lbs_adapter *adapter, struct cmd_ctrl_node *cmdnode, u8 addtail); | 36 | void lbs_queue_cmd(struct lbs_adapter *adapter, |
37 | struct cmd_ctrl_node *cmdnode, | ||
38 | u8 addtail); | ||
36 | 39 | ||
37 | int lbs_allocate_cmd_buffer(lbs_private * priv); | 40 | int lbs_allocate_cmd_buffer(struct lbs_private *priv); |
38 | int lbs_execute_next_command(lbs_private * priv); | 41 | int lbs_execute_next_command(struct lbs_private *priv); |
39 | int lbs_process_event(lbs_private * priv); | 42 | int lbs_process_event(struct lbs_private *priv); |
40 | void lbs_interrupt(struct net_device *); | 43 | void lbs_interrupt(struct net_device *); |
41 | int lbs_set_radio_control(lbs_private * priv); | 44 | int lbs_set_radio_control(struct lbs_private *priv); |
42 | u32 lbs_fw_index_to_data_rate(u8 index); | 45 | u32 lbs_fw_index_to_data_rate(u8 index); |
43 | u8 lbs_data_rate_to_fw_index(u32 rate); | 46 | u8 lbs_data_rate_to_fw_index(u32 rate); |
44 | void lbs_get_fwversion(lbs_adapter *adapter, char *fwversion, int maxlen); | 47 | void lbs_get_fwversion(struct lbs_adapter *adapter, |
48 | char *fwversion, | ||
49 | int maxlen); | ||
45 | 50 | ||
46 | void lbs_upload_rx_packet(lbs_private * priv, struct sk_buff *skb); | 51 | void lbs_upload_rx_packet(struct lbs_private *priv, struct sk_buff *skb); |
47 | 52 | ||
48 | /** The proc fs interface */ | 53 | /** The proc fs interface */ |
49 | int lbs_process_rx_command(lbs_private * priv); | 54 | int lbs_process_rx_command(struct lbs_private *priv); |
50 | int lbs_process_tx(lbs_private * priv, struct sk_buff *skb); | 55 | int lbs_process_tx(struct lbs_private *priv, struct sk_buff *skb); |
51 | void __lbs_cleanup_and_insert_cmd(lbs_private * priv, | 56 | void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv, |
52 | struct cmd_ctrl_node *ptempcmd); | 57 | struct cmd_ctrl_node *ptempcmd); |
53 | 58 | ||
54 | int lbs_set_regiontable(lbs_private * priv, u8 region, u8 band); | 59 | int lbs_set_regiontable(struct lbs_private *priv, u8 region, u8 band); |
55 | 60 | ||
56 | int lbs_process_rxed_packet(lbs_private * priv, struct sk_buff *); | 61 | int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *); |
57 | 62 | ||
58 | void lbs_ps_sleep(lbs_private * priv, int wait_option); | 63 | void lbs_ps_sleep(struct lbs_private *priv, int wait_option); |
59 | void lbs_ps_confirm_sleep(lbs_private * priv, u16 psmode); | 64 | void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode); |
60 | void lbs_ps_wakeup(lbs_private * priv, int wait_option); | 65 | void lbs_ps_wakeup(struct lbs_private *priv, int wait_option); |
61 | 66 | ||
62 | void lbs_tx_runqueue(lbs_private *priv); | 67 | void lbs_tx_runqueue(struct lbs_private *priv); |
63 | 68 | ||
64 | struct chan_freq_power *lbs_find_cfp_by_band_and_channel( | 69 | struct chan_freq_power *lbs_find_cfp_by_band_and_channel( |
65 | lbs_adapter *adapter, u8 band, u16 channel); | 70 | struct lbs_adapter *adapter, |
71 | u8 band, | ||
72 | u16 channel); | ||
66 | 73 | ||
67 | void lbs_mac_event_disconnected(lbs_private * priv); | 74 | void lbs_mac_event_disconnected(struct lbs_private *priv); |
68 | 75 | ||
69 | void lbs_send_iwevcustom_event(lbs_private *priv, s8 *str); | 76 | void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str); |
70 | 77 | ||
71 | /* main.c */ | 78 | /* main.c */ |
72 | struct chan_freq_power *lbs_get_region_cfp_table(u8 region, u8 band, | 79 | struct chan_freq_power *lbs_get_region_cfp_table(u8 region, |
73 | int *cfp_no); | 80 | u8 band, |
74 | lbs_private *lbs_add_card(void *card, struct device *dmdev); | 81 | int *cfp_no); |
75 | int lbs_remove_card(lbs_private *priv); | 82 | struct lbs_private *lbs_add_card(void *card, struct device *dmdev); |
76 | int lbs_start_card(lbs_private *priv); | 83 | int lbs_remove_card(struct lbs_private *priv); |
77 | int lbs_stop_card(lbs_private *priv); | 84 | int lbs_start_card(struct lbs_private *priv); |
78 | int lbs_add_mesh(lbs_private *priv, struct device *dev); | 85 | int lbs_stop_card(struct lbs_private *priv); |
79 | void lbs_remove_mesh(lbs_private *priv); | 86 | int lbs_add_mesh(struct lbs_private *priv, struct device *dev); |
80 | int lbs_reset_device(lbs_private *priv); | 87 | void lbs_remove_mesh(struct lbs_private *priv); |
88 | int lbs_reset_device(struct lbs_private *priv); | ||
81 | 89 | ||
82 | #endif | 90 | #endif |