Commit e920b808 authored by Vatsala Narang's avatar Vatsala Narang Committed by Greg Kroah-Hartman

staging: rtl8723bs: core: Fix a comparison warning.

Move the constant to the right side of comparison to get rid of
checkpatch warning.
Signed-off-by: default avatarVatsala Narang <vatsalanarang@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent db920621
...@@ -1395,16 +1395,16 @@ ssize_t proc_set_btcoex_dbg(struct file *file, const char __user *buffer, size_t ...@@ -1395,16 +1395,16 @@ ssize_t proc_set_btcoex_dbg(struct file *file, const char __user *buffer, size_t
} }
num = sscanf(tmp, "%x %x", module, module+1); num = sscanf(tmp, "%x %x", module, module+1);
if (1 == num) { if (num == 1) {
if (0 == module[0]) if (module[0] == 0)
memset(module, 0, sizeof(module)); memset(module, 0, sizeof(module));
else else
memset(module, 0xFF, sizeof(module)); memset(module, 0xFF, sizeof(module));
} else if (2 != num) { } else if (num != 2) {
DBG_871X(FUNC_ADPT_FMT ": input(\"%s\") format incorrect!\n", DBG_871X(FUNC_ADPT_FMT ": input(\"%s\") format incorrect!\n",
FUNC_ADPT_ARG(padapter), tmp); FUNC_ADPT_ARG(padapter), tmp);
if (0 == num) if (num == 0)
return -EFAULT; return -EFAULT;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment