diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-09-24 16:14:55 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-09-29 15:56:52 +0200 |
commit | 076cdcb12f784b2057f172b5caca641fafa67cdf (patch) | |
tree | 8b1621ae082ebb3c0a2def9c359997f0e77818a5 /net/mac80211/ieee80211_i.h | |
parent | 90d13e8f5b3c2445f481be4a2012a1861337f718 (diff) | |
download | blackbird-op-linux-076cdcb12f784b2057f172b5caca641fafa67cdf.tar.gz blackbird-op-linux-076cdcb12f784b2057f172b5caca641fafa67cdf.zip |
mac80211: use bool argument to ieee80211_send_nullfunc
Instead of int with 0/1, use bool with false/true for the
powersave argument to ieee80211_send_nullfunc().
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 1af655a136bb..f9605f13def9 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -1850,7 +1850,7 @@ void ieee80211_dynamic_ps_disable_work(struct work_struct *work); void ieee80211_dynamic_ps_timer(unsigned long data); void ieee80211_send_nullfunc(struct ieee80211_local *local, struct ieee80211_sub_if_data *sdata, - int powersave); + bool powersave); void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata, struct ieee80211_hdr *hdr); void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata, |