summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu
diff options
context:
space:
mode:
authorColin Vidal2016-02-16 23:12:19 +0100
committerGreg Kroah-Hartman2016-02-21 00:06:51 +0100
commita3c0c480e8908c478385a62aa4f9e6ba706478a0 (patch)
tree08998f8f5ff42fbc60167222b259023d09e9fbd4 /drivers/staging/rtl8188eu
parentStaging: rtl8188eu/core: Coding style fix, set constant operand on right in t... (diff)
downloadkernel-qcow2-linux-a3c0c480e8908c478385a62aa4f9e6ba706478a0.tar.gz
kernel-qcow2-linux-a3c0c480e8908c478385a62aa4f9e6ba706478a0.tar.xz
kernel-qcow2-linux-a3c0c480e8908c478385a62aa4f9e6ba706478a0.zip
Staging: rtl8188eu/core: Coding style fix, avoid line over 80 characters
Jump a new line after and operator of the test. It avoids to exceed 80 chars line, and remove a checkpatch warning. Signed-off-by: Colin Vidal <colin@cvidal.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r--drivers/staging/rtl8188eu/core/rtw_iol.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_iol.c b/drivers/staging/rtl8188eu/core/rtw_iol.c
index 3dd1a9a26894..2e2145caa56b 100644
--- a/drivers/staging/rtl8188eu/core/rtw_iol.c
+++ b/drivers/staging/rtl8188eu/core/rtw_iol.c
@@ -21,7 +21,8 @@ bool rtw_IOL_applied(struct adapter *adapter)
if (adapter->registrypriv.fw_iol == 1)
return true;
- if ((adapter->registrypriv.fw_iol == 2) && (!adapter_to_dvobj(adapter)->ishighspeed))
+ if ((adapter->registrypriv.fw_iol == 2) &&
+ (!adapter_to_dvobj(adapter)->ishighspeed))
return true;
return false;
}