aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAybuke Ozdemir <aybuke.147@gmail.com>2014-09-18 16:56:13 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-19 20:48:05 -0400
commita45cbb78147e8f57250f1687f5b61470b8343a20 (patch)
tree1ac12fc1cf5d62e904b7a4932aef5af8953a2342
parent34c376fe07342e06f531504b01d3b953962e456c (diff)
Staging: rtl8821ae: Fix "foo * bar" warning.
This patch fixes these error messages found by checkpatch.pl: ERROR: "foo* bar" should be "foo *bar" Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8821ae/base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8821ae/base.h b/drivers/staging/rtl8821ae/base.h
index cf166f33941e..2aec7cdb9b04 100644
--- a/drivers/staging/rtl8821ae/base.h
+++ b/drivers/staging/rtl8821ae/base.h
@@ -125,7 +125,7 @@ u8 rtl_is_special_data(struct ieee80211_hw *hw, struct sk_buff *skb, u8 is_tx);
125void rtl_beacon_statistic(struct ieee80211_hw *hw, struct sk_buff *skb); 125void rtl_beacon_statistic(struct ieee80211_hw *hw, struct sk_buff *skb);
126void rtl_watch_dog_timer_callback(unsigned long data); 126void rtl_watch_dog_timer_callback(unsigned long data);
127int rtl_tx_agg_start(struct ieee80211_hw *hw, struct ieee80211_vif *vif, 127int rtl_tx_agg_start(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
128 struct ieee80211_sta *sta, u16 tid, u16 * ssn); 128 struct ieee80211_sta *sta, u16 tid, u16 *ssn);
129int rtl_tx_agg_stop(struct ieee80211_hw *hw, struct ieee80211_vif *vif, 129int rtl_tx_agg_stop(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
130 struct ieee80211_sta *sta, u16 tid); 130 struct ieee80211_sta *sta, u16 tid);
131int rtl_tx_agg_oper(struct ieee80211_hw *hw, 131int rtl_tx_agg_oper(struct ieee80211_hw *hw,