summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/core
diff options
context:
space:
mode:
authorColin Vidal <colin@cvidal.org>2016-02-16 23:12:18 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-20 15:06:51 -0800
commit18dbf8eacc31bdd10e7c93eb88d9c38fe547d1ed (patch)
treee2e94c19e623f7ad6377c7f11d37ba04c83efe9b /drivers/staging/rtl8188eu/core
parentc3588214cbab692c6170b0e7327ebc86fc63141e (diff)
downloadop-kernel-dev-18dbf8eacc31bdd10e7c93eb88d9c38fe547d1ed.zip
op-kernel-dev-18dbf8eacc31bdd10e7c93eb88d9c38fe547d1ed.tar.gz
Staging: rtl8188eu/core: Coding style fix, set constant operand on right in tests
Remove a checkpatch warning, putting constant operant on right of two tests. Signed-off-by: Colin Vidal <colin@cvidal.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/core')
-rw-r--r--drivers/staging/rtl8188eu/core/rtw_iol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_iol.c b/drivers/staging/rtl8188eu/core/rtw_iol.c
index 7642c22..3dd1a9a 100644
--- a/drivers/staging/rtl8188eu/core/rtw_iol.c
+++ b/drivers/staging/rtl8188eu/core/rtw_iol.c
@@ -18,10 +18,10 @@
bool rtw_IOL_applied(struct adapter *adapter)
{
- if (1 == adapter->registrypriv.fw_iol)
+ if (adapter->registrypriv.fw_iol == 1)
return true;
- if ((2 == adapter->registrypriv.fw_iol) && (!adapter_to_dvobj(adapter)->ishighspeed))
+ if ((adapter->registrypriv.fw_iol == 2) && (!adapter_to_dvobj(adapter)->ishighspeed))
return true;
return false;
}
OpenPOWER on IntegriCloud