[PATCH] libertas: call SET_NETDEV_DEV from common code
[deliverable/linux.git] / drivers / net / wireless / libertas / decl.h
CommitLineData
876c9d3a
MT
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
7732ca45
DW
9#include <linux/device.h>
10
876c9d3a
MT
11#include "defs.h"
12
13/** Function Prototype Declaration */
14struct wlan_private;
15struct sk_buff;
16struct net_device;
17
18extern char *libertas_fw_name;
19
20void libertas_free_adapter(wlan_private * priv);
21int libertas_set_mac_packet_filter(wlan_private * priv);
22
23int libertas_send_null_packet(wlan_private * priv, u8 pwr_mgmt);
24void libertas_send_tx_feedback(wlan_private * priv);
25u8 libertas_check_last_packet_indication(wlan_private * priv);
26
27int libertas_free_cmd_buffer(wlan_private * priv);
28struct cmd_ctrl_node;
29struct cmd_ctrl_node *libertas_get_free_cmd_ctrl_node(wlan_private * priv);
30
31void libertas_set_cmd_ctrl_node(wlan_private * priv,
32 struct cmd_ctrl_node *ptempnode,
33 u32 cmd_oid, u16 wait_option, void *pdata_buf);
34
35int libertas_prepare_and_send_command(wlan_private * priv,
36 u16 cmd_no,
37 u16 cmd_action,
38 u16 wait_option, u32 cmd_oid, void *pdata_buf);
39
40void libertas_queue_cmd(wlan_adapter * adapter, struct cmd_ctrl_node *cmdnode, u8 addtail);
41
42int libertas_allocate_cmd_buffer(wlan_private * priv);
43int libertas_execute_next_command(wlan_private * priv);
44int libertas_process_event(wlan_private * priv);
45void libertas_interrupt(struct net_device *);
46int libertas_set_radio_control(wlan_private * priv);
47u32 libertas_index_to_data_rate(u8 index);
48u8 libertas_data_rate_to_index(u32 rate);
49void libertas_get_fwversion(wlan_adapter * adapter, char *fwversion, int maxlen);
50
3d4bd24b 51void libertas_upload_rx_packet(wlan_private * priv, struct sk_buff *skb);
876c9d3a
MT
52
53/** The proc fs interface */
54int libertas_process_rx_command(wlan_private * priv);
55int libertas_process_tx(wlan_private * priv, struct sk_buff *skb);
56void libertas_cleanup_and_insert_cmd(wlan_private * priv,
57 struct cmd_ctrl_node *ptempcmd);
58void __libertas_cleanup_and_insert_cmd(wlan_private * priv,
59 struct cmd_ctrl_node *ptempcmd);
60
61int libertas_set_regiontable(wlan_private * priv, u8 region, u8 band);
62
63int libertas_process_rxed_packet(wlan_private * priv, struct sk_buff *);
64
65void libertas_ps_sleep(wlan_private * priv, int wait_option);
66void libertas_ps_confirm_sleep(wlan_private * priv, u16 psmode);
67void libertas_ps_wakeup(wlan_private * priv, int wait_option);
68
69void libertas_tx_runqueue(wlan_private *priv);
70
ed457037 71struct chan_freq_power *libertas_find_cfp_by_band_and_channel(
876c9d3a
MT
72 wlan_adapter * adapter, u8 band, u16 channel);
73
ed457037 74void libertas_mac_event_disconnected(wlan_private * priv);
876c9d3a
MT
75
76void libertas_send_iwevcustom_event(wlan_private * priv, s8 * str);
77
ed457037 78/* fw.c */
084708b6 79int libertas_init_fw(wlan_private * priv, char *fw_name);
ed457037 80
876c9d3a 81/* main.c */
ed457037 82struct chan_freq_power *libertas_get_region_cfp_table(u8 region, u8 band,
876c9d3a 83 int *cfp_no);
7732ca45 84wlan_private *libertas_add_card(void *card, struct device *dmdev);
084708b6
HS
85int libertas_activate_card(wlan_private *priv, char *fw_name);
86int libertas_remove_card(wlan_private *priv);
7732ca45 87int libertas_add_mesh(wlan_private *priv, struct device *dev);
084708b6 88void libertas_remove_mesh(wlan_private *priv);
208fdd2f
HS
89
90
876c9d3a 91#endif /* _WLAN_DECL_H_ */
This page took 0.054737 seconds and 5 git commands to generate.