aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/mwifiex/main.h
diff options
context:
space:
mode:
authorAvinash Patil <patila@marvell.com>2014-02-07 19:27:30 -0500
committerJohn W. Linville <linville@tuxdriver.com>2014-02-12 15:36:17 -0500
commit4bcf93d3a4d6f145e9d871afc4797018d33c4bb1 (patch)
treef0f503dc1ce3a163eca98aabdc8156c3fb14be41 /drivers/net/wireless/mwifiex/main.h
parent41a24a29142dd0352de965c40b840a90d6e55f6c (diff)
mwifiex: move station list functions to common code
These functions are now needed by TDLS while managing station list. Move them from AP related file to utility file. Signed-off-by: Avinash Patil <patila@marvell.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex/main.h')
-rw-r--r--drivers/net/wireless/mwifiex/main.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/main.h b/drivers/net/wireless/mwifiex/main.h
index 39f661a53df5..2114475f03c3 100644
--- a/drivers/net/wireless/mwifiex/main.h
+++ b/drivers/net/wireless/mwifiex/main.h
@@ -1167,6 +1167,16 @@ void mwifiex_dnld_txpwr_table(struct mwifiex_private *priv);
1167 1167
1168extern const struct ethtool_ops mwifiex_ethtool_ops; 1168extern const struct ethtool_ops mwifiex_ethtool_ops;
1169 1169
1170void mwifiex_del_all_sta_list(struct mwifiex_private *priv);
1171void mwifiex_del_sta_entry(struct mwifiex_private *priv, u8 *mac);
1172void
1173mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies,
1174 int ies_len, struct mwifiex_sta_node *node);
1175struct mwifiex_sta_node *
1176mwifiex_add_sta_entry(struct mwifiex_private *priv, u8 *mac);
1177struct mwifiex_sta_node *
1178mwifiex_get_sta_entry(struct mwifiex_private *priv, u8 *mac);
1179
1170#ifdef CONFIG_DEBUG_FS 1180#ifdef CONFIG_DEBUG_FS
1171void mwifiex_debugfs_init(void); 1181void mwifiex_debugfs_init(void);
1172void mwifiex_debugfs_remove(void); 1182void mwifiex_debugfs_remove(void);