diff options
author | 2014-03-05 14:26:50 +0300 | |
---|---|---|
committer | 2014-03-06 11:58:32 -0800 | |
commit | 879cb0c986022379ece5946a64a11f5edb7c056e (patch) | |
tree | 61eae926de05662f6294abcc6d01c8095d778994 /drivers/staging/rtl8712/ieee80211.c | |
parent | staging: usbip: vhci_sysfs.c: check return value of sscanf (diff) | |
download | linux-dev-879cb0c986022379ece5946a64a11f5edb7c056e.tar.xz linux-dev-879cb0c986022379ece5946a64a11f5edb7c056e.zip |
staging: rtl8712: fix some confusing indenting
These set off a static checker warning about "warn: add curly braces?",
but actually the code it correct, it's just the indenting which is
wrong.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712/ieee80211.c')
-rw-r--r-- | drivers/staging/rtl8712/ieee80211.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging/rtl8712/ieee80211.c index cc68d9748edb..57fef70ad984 100644 --- a/drivers/staging/rtl8712/ieee80211.c +++ b/drivers/staging/rtl8712/ieee80211.c @@ -78,9 +78,9 @@ uint r8712_is_cckrates_included(u8 *rate) if ((((rate[i]) & 0x7f) == 2) || (((rate[i]) & 0x7f) == 4) || (((rate[i]) & 0x7f) == 11) || (((rate[i]) & 0x7f) == 22)) return true; - i++; - } - return false; + i++; + } + return false; } uint r8712_is_cckratesonly_included(u8 *rate) |