]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
staging: rtl8723bs: Fix indenting mistakes in core/rtw_ieee80211.c
authorLarry Finger <Larry.Finger@lwfinger.net>
Sat, 8 Apr 2017 16:07:37 +0000 (11:07 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 9 Apr 2017 07:26:28 +0000 (09:26 +0200)
Smatch reports the following:

  CHECK   drivers/staging/rtl8723bs/core/rtw_ieee80211.c
drivers/staging/rtl8723bs/core/rtw_ieee80211.c:83 rtw_is_cckrates_included() warn: if statement not indented
drivers/staging/rtl8723bs/core/rtw_ieee80211.c:98 rtw_is_cckratesonly_included() warn: if statement not indented

These warnings are fixed with white-space changes.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_ieee80211.c

index af44a8cd26f84571a592f94e894938e30034cb71..4670e72368e5dce4ca085b7865b1d9f207d431e9 100644 (file)
@@ -81,8 +81,8 @@ uint  rtw_is_cckrates_included(u8 *rate)
 
                while (rate[i] !=  0) {
                        if  ((((rate[i]) & 0x7f) == 2)  || (((rate[i]) & 0x7f) == 4) ||
-                       (((rate[i]) & 0x7f) == 11)  || (((rate[i]) & 0x7f) == 22))
-                       return true;
+                            (((rate[i]) & 0x7f) == 11)  || (((rate[i]) & 0x7f) == 22))
+                               return true;
                        i++;
                }
 
@@ -95,16 +95,13 @@ uint        rtw_is_cckratesonly_included(u8 *rate)
 
 
        while (rate[i] != 0) {
-                       if  ((((rate[i]) & 0x7f) != 2) && (((rate[i]) & 0x7f) != 4) &&
-                               (((rate[i]) & 0x7f) != 11)  && (((rate[i]) & 0x7f) != 22))
-
+               if  ((((rate[i]) & 0x7f) != 2) && (((rate[i]) & 0x7f) != 4) &&
+                    (((rate[i]) & 0x7f) != 11)  && (((rate[i]) & 0x7f) != 22))
                        return false;
-
-                       i++;
+               i++;
        }
 
        return true;
-
 }
 
 int rtw_check_network_type(unsigned char *rate, int ratelen, int channel)