projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
592a55e
)
staging: rtl8188eu: Put constant on right side of comparison
author
Aviv Palivoda
<palaviv@gmail.com>
Mon, 15 May 2017 05:55:01 +0000
(08:55 +0300)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 15 May 2017 06:16:39 +0000
(08:16 +0200)
Constants should be on the right side of comparisons.
Issue found by checkpatch.pl script.
Signed-off-by: Aviv Palivoda <palaviv@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/phy.c
patch
|
blob
|
history
diff --git
a/drivers/staging/rtl8188eu/hal/phy.c
b/drivers/staging/rtl8188eu/hal/phy.c
index 054f5996f60d9648be2b85411f293c0034358ec2..3039bbe44a25237f1a86254e2d6efb42b6936db2 100644
(file)
--- a/
drivers/staging/rtl8188eu/hal/phy.c
+++ b/
drivers/staging/rtl8188eu/hal/phy.c
@@
-1091,7
+1091,7
@@
static void phy_iq_calibrate(struct adapter *adapt, s32 result[][8],
}
}
- if (
0x00 == path_a_ok
) {
+ if (
path_a_ok == 0x00
) {
ODM_RT_TRACE(dm_odm, ODM_COMP_CALIBRATION, ODM_DBG_LOUD,
("Path A IQK failed!!\n"));
}
@@
-1122,7
+1122,7
@@
static void phy_iq_calibrate(struct adapter *adapt, s32 result[][8],
}
}
- if (
0x00 == path_b_ok
) {
+ if (
path_b_ok == 0x00
) {
ODM_RT_TRACE(dm_odm, ODM_COMP_CALIBRATION, ODM_DBG_LOUD,
("Path B IQK failed!!\n"));
}