diff options
author | Avinash Patil <patila@marvell.com> | 2014-02-07 19:27:30 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-12 15:36:17 -0500 |
commit | 4bcf93d3a4d6f145e9d871afc4797018d33c4bb1 (patch) | |
tree | f0f503dc1ce3a163eca98aabdc8156c3fb14be41 /drivers/net/wireless/mwifiex/main.h | |
parent | 41a24a29142dd0352de965c40b840a90d6e55f6c (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.h | 10 |
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 | ||
1168 | extern const struct ethtool_ops mwifiex_ethtool_ops; | 1168 | extern const struct ethtool_ops mwifiex_ethtool_ops; |
1169 | 1169 | ||
1170 | void mwifiex_del_all_sta_list(struct mwifiex_private *priv); | ||
1171 | void mwifiex_del_sta_entry(struct mwifiex_private *priv, u8 *mac); | ||
1172 | void | ||
1173 | mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies, | ||
1174 | int ies_len, struct mwifiex_sta_node *node); | ||
1175 | struct mwifiex_sta_node * | ||
1176 | mwifiex_add_sta_entry(struct mwifiex_private *priv, u8 *mac); | ||
1177 | struct mwifiex_sta_node * | ||
1178 | mwifiex_get_sta_entry(struct mwifiex_private *priv, u8 *mac); | ||
1179 | |||
1170 | #ifdef CONFIG_DEBUG_FS | 1180 | #ifdef CONFIG_DEBUG_FS |
1171 | void mwifiex_debugfs_init(void); | 1181 | void mwifiex_debugfs_init(void); |
1172 | void mwifiex_debugfs_remove(void); | 1182 | void mwifiex_debugfs_remove(void); |