brcm80211: fix compare_const_fl.cocci warnings
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 6 Dec 2015 06:03:26 +0000 (07:03 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 11 Dec 2015 11:25:25 +0000 (13:25 +0200)
Move constants to the right of binary operators.

Generated by: scripts/coccinelle/misc/compare_const_fl.cocci

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/broadcom/brcm80211/brcmsmac/channel.c

index 635ae034c7e5d8d149cec933b55d7405678fa6ba..38bd5890bd53e8f4cb3b1f335004197423583f9a 100644 (file)
@@ -177,8 +177,8 @@ static bool brcms_c_country_valid(const char *ccode)
         * only allow ascii alpha uppercase for the first 2
         * chars.
         */
-       if (!((0x80 & ccode[0]) == 0 && ccode[0] >= 0x41 && ccode[0] <= 0x5A &&
-             (0x80 & ccode[1]) == 0 && ccode[1] >= 0x41 && ccode[1] <= 0x5A))
+       if (!((ccode[0] & 0x80) == 0 && ccode[0] >= 0x41 && ccode[0] <= 0x5A &&
+             (ccode[1] & 0x80) == 0 && ccode[1] >= 0x41 && ccode[1] <= 0x5A))
                return false;
 
        /*
This page took 0.044369 seconds and 5 git commands to generate.