aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
diff options
context:
space:
mode:
authorMichael Straube <straube.linux@gmail.com>2020-06-29 18:12:54 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-01 15:43:04 +0200
commit3a90d8186659b11dba0b19f60cfd866979f8b1be (patch)
tree5d0275e450e41d7d26995b73bd57d5fad9c4c7bb /drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
parentstaging: qlge/qlge_main.c: use generic power management (diff)
downloadlinux-dev-3a90d8186659b11dba0b19f60cfd866979f8b1be.tar.xz
linux-dev-3a90d8186659b11dba0b19f60cfd866979f8b1be.zip
staging: rtl8188eu: use compound assignment operators
Use compound assignment operators to simplify the code and clear missing spaces around operators checkpatch issues. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200629161255.28371-1-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r--drivers/staging/rtl8188eu/os_dep/ioctl_linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c b/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
index d5968ef9f43d..68196d8c05eb 100644
--- a/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
+++ b/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
@@ -211,7 +211,7 @@ static char *translate_scan(struct adapter *padapter,
else/* default MCS7 */
max_rate = (bw_40MHz) ? ((short_GI) ? 150 : 135) : ((short_GI) ? 72 : 65);
- max_rate = max_rate*2;/* Mbps/2; */
+ max_rate *= 2; /* Mbps/2; */
}
iwe.cmd = SIOCGIWRATE;
@@ -1395,7 +1395,7 @@ static int rtw_wx_set_rate(struct net_device *dev,
ratevalue = 11;
goto set_rate;
}
- target_rate = target_rate/100000;
+ target_rate /= 100000;
switch (target_rate) {
case 10: