diff options
author | Gulsah Kose <gulsah.1004@gmail.com> | 2014-03-18 18:25:49 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-19 12:14:58 -0400 |
commit | 66d8a3938e42cddd6115e3c92062e0515085a4fd (patch) | |
tree | 1667ccb6c4f3cd08761dfbc5db3d2dee402621bf | |
parent | 3df1d9bddf64031e3196b912f3f37828f045565b (diff) |
staging: rtl8821ae: Fix suspect code indent for conditional statements
Fix checkpatch.pl issues with suspect code indent for conditional
statements (16, 16) in base.c
Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8821ae/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8821ae/base.c b/drivers/staging/rtl8821ae/base.c index 43dad6df44d1..c65703d955dd 100644 --- a/drivers/staging/rtl8821ae/base.c +++ b/drivers/staging/rtl8821ae/base.c | |||
@@ -711,7 +711,7 @@ static void _rtl_query_bandwidth_mode(struct ieee80211_hw *hw, | |||
711 | return; | 711 | return; |
712 | } else if (mac->opmode == NL80211_IFTYPE_STATION) { | 712 | } else if (mac->opmode == NL80211_IFTYPE_STATION) { |
713 | if (!mac->bw_40 || !(sta->ht_cap.ht_supported)) | 713 | if (!mac->bw_40 || !(sta->ht_cap.ht_supported)) |
714 | return; | 714 | return; |
715 | } | 715 | } |
716 | if (tcb_desc->b_multicast || tcb_desc->b_broadcast) | 716 | if (tcb_desc->b_multicast || tcb_desc->b_broadcast) |
717 | return; | 717 | return; |