]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
staging: rtl8821ae: Fix braces {} are not necessary.
authorGulsah Kose <gulsah.1004@gmail.com>
Wed, 19 Mar 2014 06:36:50 +0000 (08:36 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Mar 2014 16:14:58 +0000 (09:14 -0700)
Fix checkpatch.pl issues with braces {} are not necessary in base.c

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8821ae/base.c

index c65703d955ddcec6f439a04d740af8f45f5f57fc..e5073fe247706311da8cecef2137c9521c2cf384 100644 (file)
@@ -666,26 +666,23 @@ static void _rtl_txrate_selectmode(struct ieee80211_hw *hw,
                if (mac->opmode == NL80211_IFTYPE_STATION ||
                        mac->opmode == NL80211_IFTYPE_MESH_POINT) {
                        tcb_desc->mac_id = 0;
-
-                       if (mac->mode == WIRELESS_MODE_N_24G) {
+                       if (mac->mode == WIRELESS_MODE_N_24G)
                                tcb_desc->ratr_index = RATR_INX_WIRELESS_NGB;
-                       } else if (mac->mode == WIRELESS_MODE_N_5G) {
+                       else if (mac->mode == WIRELESS_MODE_N_5G)
                                tcb_desc->ratr_index = RATR_INX_WIRELESS_NG;
-                       } else if (mac->mode & WIRELESS_MODE_G) {
+                       else if (mac->mode & WIRELESS_MODE_G)
                                tcb_desc->ratr_index = RATR_INX_WIRELESS_GB;
-                       } else if (mac->mode & WIRELESS_MODE_B) {
+                       else if (mac->mode & WIRELESS_MODE_B)
                                tcb_desc->ratr_index = RATR_INX_WIRELESS_B;
-                       } else if (mac->mode & WIRELESS_MODE_A) {
+                       else if (mac->mode & WIRELESS_MODE_A)
                                tcb_desc->ratr_index = RATR_INX_WIRELESS_G;
-                       }
                } else if (mac->opmode == NL80211_IFTYPE_AP ||
                        mac->opmode == NL80211_IFTYPE_ADHOC) {
                        if (NULL != sta) {
-                               if (sta->aid > 0) {
+                               if (sta->aid > 0)
                                        tcb_desc->mac_id = sta->aid + 1;
-                               } else {
+                               else
                                        tcb_desc->mac_id = 1;
-                               }
                        } else {
                                tcb_desc->mac_id = 0;
                        }
@@ -1652,9 +1649,8 @@ void rtl_recognize_peer(struct ieee80211_hw *hw, u8 *data, unsigned int len)
        if (ether_addr_equal(hdr->addr3, rtlpriv->mac80211.bssid))
                return;
 
-       if (rtl_find_221_ie(hw, data, len)) {
+       if (rtl_find_221_ie(hw, data, len))
                vendor = mac->vendor;
-       }
 
        if ((memcmp(mac->bssid, ap5_1, 3) == 0) ||
                (memcmp(mac->bssid, ap5_2, 3) == 0) ||