libertas: Remove cmd_oid from struct cmd_ctrl_node
[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
10078321
HS
6#ifndef _LBS_DECL_H_
7#define _LBS_DECL_H_
876c9d3a 8
7732ca45
DW
9#include <linux/device.h>
10
876c9d3a
MT
11#include "defs.h"
12
13/** Function Prototype Declaration */
10078321 14struct lbs_private;
69f9032d 15struct lbs_adapter;
876c9d3a
MT
16struct sk_buff;
17struct net_device;
18
69f9032d 19int lbs_set_mac_packet_filter(struct lbs_private *priv);
876c9d3a 20
69f9032d 21void lbs_send_tx_feedback(struct lbs_private *priv);
876c9d3a 22
69f9032d 23int lbs_free_cmd_buffer(struct lbs_private *priv);
876c9d3a 24struct cmd_ctrl_node;
69f9032d 25struct cmd_ctrl_node *lbs_get_free_cmd_ctrl_node(struct lbs_private *priv);
876c9d3a 26
69f9032d
HS
27void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
28 struct cmd_ctrl_node *ptempnode,
f5ece8fc 29 u16 wait_option, void *pdata_buf);
876c9d3a 30
69f9032d
HS
31int lbs_prepare_and_send_command(struct lbs_private *priv,
32 u16 cmd_no,
33 u16 cmd_action,
34 u16 wait_option, u32 cmd_oid, void *pdata_buf);
876c9d3a 35
69f9032d
HS
36void lbs_queue_cmd(struct lbs_adapter *adapter,
37 struct cmd_ctrl_node *cmdnode,
38 u8 addtail);
876c9d3a 39
69f9032d
HS
40int lbs_allocate_cmd_buffer(struct lbs_private *priv);
41int lbs_execute_next_command(struct lbs_private *priv);
42int lbs_process_event(struct lbs_private *priv);
10078321 43void lbs_interrupt(struct net_device *);
69f9032d 44int lbs_set_radio_control(struct lbs_private *priv);
10078321
HS
45u32 lbs_fw_index_to_data_rate(u8 index);
46u8 lbs_data_rate_to_fw_index(u32 rate);
69f9032d
HS
47void lbs_get_fwversion(struct lbs_adapter *adapter,
48 char *fwversion,
49 int maxlen);
876c9d3a 50
69f9032d 51void lbs_upload_rx_packet(struct lbs_private *priv, struct sk_buff *skb);
876c9d3a
MT
52
53/** The proc fs interface */
69f9032d
HS
54int lbs_process_rx_command(struct lbs_private *priv);
55int lbs_process_tx(struct lbs_private *priv, struct sk_buff *skb);
56void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
57 struct cmd_ctrl_node *ptempcmd);
876c9d3a 58
69f9032d 59int lbs_set_regiontable(struct lbs_private *priv, u8 region, u8 band);
876c9d3a 60
69f9032d 61int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *);
876c9d3a 62
69f9032d
HS
63void lbs_ps_sleep(struct lbs_private *priv, int wait_option);
64void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode);
65void lbs_ps_wakeup(struct lbs_private *priv, int wait_option);
876c9d3a 66
69f9032d 67void lbs_tx_runqueue(struct lbs_private *priv);
876c9d3a 68
10078321 69struct chan_freq_power *lbs_find_cfp_by_band_and_channel(
69f9032d
HS
70 struct lbs_adapter *adapter,
71 u8 band,
72 u16 channel);
876c9d3a 73
69f9032d 74void lbs_mac_event_disconnected(struct lbs_private *priv);
876c9d3a 75
69f9032d 76void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str);
876c9d3a 77
876c9d3a 78/* main.c */
69f9032d
HS
79struct chan_freq_power *lbs_get_region_cfp_table(u8 region,
80 u8 band,
81 int *cfp_no);
82struct lbs_private *lbs_add_card(void *card, struct device *dmdev);
83int lbs_remove_card(struct lbs_private *priv);
84int lbs_start_card(struct lbs_private *priv);
85int lbs_stop_card(struct lbs_private *priv);
86int lbs_add_mesh(struct lbs_private *priv, struct device *dev);
87void lbs_remove_mesh(struct lbs_private *priv);
88int lbs_reset_device(struct lbs_private *priv);
10078321
HS
89
90#endif
This page took 0.16018 seconds and 5 git commands to generate.