Commit 4623ec7d authored by Luciano Coelho's avatar Luciano Coelho

wl12xx: fix a couple of sparse warnings about undeclared functions

Fix the following sparse warnings:

drivers/net/wireless/wl12xx/main.c:1129:5: warning: symbol '__wl1271_plt_stop' was not declared. Should it be static?
drivers/net/wireless/wl12xx/main.c:2988:5: warning: symbol 'wl1271_op_ampdu_action' was not declared. Should it be static?

Both functions should be static.
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent d9482e2b
...@@ -1126,7 +1126,7 @@ int wl1271_plt_start(struct wl1271 *wl) ...@@ -1126,7 +1126,7 @@ int wl1271_plt_start(struct wl1271 *wl)
return ret; return ret;
} }
int __wl1271_plt_stop(struct wl1271 *wl) static int __wl1271_plt_stop(struct wl1271 *wl)
{ {
int ret = 0; int ret = 0;
...@@ -2985,10 +2985,11 @@ static int wl1271_op_sta_remove(struct ieee80211_hw *hw, ...@@ -2985,10 +2985,11 @@ static int wl1271_op_sta_remove(struct ieee80211_hw *hw,
return ret; return ret;
} }
int wl1271_op_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif, static int wl1271_op_ampdu_action(struct ieee80211_hw *hw,
enum ieee80211_ampdu_mlme_action action, struct ieee80211_vif *vif,
struct ieee80211_sta *sta, u16 tid, u16 *ssn, enum ieee80211_ampdu_mlme_action action,
u8 buf_size) struct ieee80211_sta *sta, u16 tid, u16 *ssn,
u8 buf_size)
{ {
struct wl1271 *wl = hw->priv; struct wl1271 *wl = hw->priv;
int ret; int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment