aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/mesh.h
diff options
context:
space:
mode:
authorHolger Schurig <holgerschurig@googlemail.com>2009-12-02 09:25:58 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-12-22 13:37:13 -0500
commit55e1ff924414111a6afbfde00375a1302aef9353 (patch)
treed4ebe0fd9ec942616d5b7201ba20e04514b8af5e /drivers/net/wireless/libertas/mesh.h
parentd6ede678c138061f5202b519f8f8d6372e2cb5bb (diff)
libertas: move mesh-related definitions into mesh.h
Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/mesh.h')
-rw-r--r--drivers/net/wireless/libertas/mesh.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/mesh.h b/drivers/net/wireless/libertas/mesh.h
index fea9b5d005fc..b642d5d11699 100644
--- a/drivers/net/wireless/libertas/mesh.h
+++ b/drivers/net/wireless/libertas/mesh.h
@@ -46,11 +46,20 @@ void lbs_mesh_set_txpd(struct lbs_private *priv,
46/* Command handling */ 46/* Command handling */
47 47
48struct cmd_ds_command; 48struct cmd_ds_command;
49struct cmd_ds_mesh_access;
50struct cmd_ds_mesh_config;
49 51
50int lbs_cmd_bt_access(struct cmd_ds_command *cmd, 52int lbs_cmd_bt_access(struct cmd_ds_command *cmd,
51 u16 cmd_action, void *pdata_buf); 53 u16 cmd_action, void *pdata_buf);
52int lbs_cmd_fwt_access(struct cmd_ds_command *cmd, 54int lbs_cmd_fwt_access(struct cmd_ds_command *cmd,
53 u16 cmd_action, void *pdata_buf); 55 u16 cmd_action, void *pdata_buf);
56int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
57 struct cmd_ds_mesh_access *cmd);
58int lbs_mesh_config_send(struct lbs_private *priv,
59 struct cmd_ds_mesh_config *cmd,
60 uint16_t action, uint16_t type);
61int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan);
62
54 63
55 64
56/* Persistent configuration */ 65/* Persistent configuration */