wifi: mac80211: move ieee80211_request_smps_mgd_work
This function can be static. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
@@ -550,18 +550,6 @@ int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ieee80211_request_smps_mgd_work(struct work_struct *work)
|
|
||||||
{
|
|
||||||
struct ieee80211_link_data *link =
|
|
||||||
container_of(work, struct ieee80211_link_data,
|
|
||||||
u.mgd.request_smps_work);
|
|
||||||
|
|
||||||
sdata_lock(link->sdata);
|
|
||||||
__ieee80211_request_smps_mgd(link->sdata, link,
|
|
||||||
link->u.mgd.driver_smps_mode);
|
|
||||||
sdata_unlock(link->sdata);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ieee80211_request_smps(struct ieee80211_vif *vif, unsigned int link_id,
|
void ieee80211_request_smps(struct ieee80211_vif *vif, unsigned int link_id,
|
||||||
enum ieee80211_smps_mode smps_mode)
|
enum ieee80211_smps_mode smps_mode)
|
||||||
{
|
{
|
||||||
|
@@ -1951,7 +1951,6 @@ void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
|
|||||||
int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
|
int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
|
||||||
enum ieee80211_smps_mode smps, const u8 *da,
|
enum ieee80211_smps_mode smps, const u8 *da,
|
||||||
const u8 *bssid);
|
const u8 *bssid);
|
||||||
void ieee80211_request_smps_mgd_work(struct work_struct *work);
|
|
||||||
bool ieee80211_smps_is_restrictive(enum ieee80211_smps_mode smps_mode_old,
|
bool ieee80211_smps_is_restrictive(enum ieee80211_smps_mode smps_mode_old,
|
||||||
enum ieee80211_smps_mode smps_mode_new);
|
enum ieee80211_smps_mode smps_mode_new);
|
||||||
|
|
||||||
|
@@ -5018,6 +5018,18 @@ void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
|
|||||||
sdata_unlock(sdata);
|
sdata_unlock(sdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void ieee80211_request_smps_mgd_work(struct work_struct *work)
|
||||||
|
{
|
||||||
|
struct ieee80211_link_data *link =
|
||||||
|
container_of(work, struct ieee80211_link_data,
|
||||||
|
u.mgd.request_smps_work);
|
||||||
|
|
||||||
|
sdata_lock(link->sdata);
|
||||||
|
__ieee80211_request_smps_mgd(link->sdata, link,
|
||||||
|
link->u.mgd.driver_smps_mode);
|
||||||
|
sdata_unlock(link->sdata);
|
||||||
|
}
|
||||||
|
|
||||||
/* interface setup */
|
/* interface setup */
|
||||||
void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
|
void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user