You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Staging: rtl8712: rtl8712_cmd: Fixed a warning.
Warning:Comparisons should place the constant on the right side of the test Fixed by placing the comparisions constant on right side of the test. Signed-off-by: Rakhi Sharma <rakhish1994@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
aea48157ce
commit
97e2ba90fc
@@ -293,7 +293,7 @@ u8 r8712_fw_cmd(struct _adapter *pAdapter, u32 cmd)
|
||||
|
||||
r8712_write32(pAdapter, IOCMD_CTRL_REG, cmd);
|
||||
msleep(100);
|
||||
while ((0 != r8712_read32(pAdapter, IOCMD_CTRL_REG)) &&
|
||||
while ((r8712_read32(pAdapter, IOCMD_CTRL_REG != 0)) &&
|
||||
(pollingcnts > 0)) {
|
||||
pollingcnts--;
|
||||
msleep(20);
|
||||
|
||||
Reference in New Issue
Block a user