diff options
author | Alexander Mikhalevich <alex.mikhalevich@gmail.com> | 2017-02-25 23:42:08 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-06 09:17:03 +0100 |
commit | 3cbd227956c2f8f61c53068d176443d46fa81e64 (patch) | |
tree | e60a82fe183390bc1d98d403589ce09c4a0d31ac /drivers/staging/rtl8712 | |
parent | 1b59ea8424c626a3e58c4fa8cdad622a2ce272ae (diff) |
staging: rtl8712: Fix checkpatch.pl warning
WARNING: Avoid multiple line dereference - prefer 'param->u.crypt.key'
Signed-off-by: Alexander Mikhalevich <alex.mikhalevich@gmail.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712')
-rw-r--r-- | drivers/staging/rtl8712/rtl871x_ioctl_linux.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/rtl8712/rtl871x_ioctl_linux.c b/drivers/staging/rtl8712/rtl871x_ioctl_linux.c index f4167f14af70..032279526d17 100644 --- a/drivers/staging/rtl8712/rtl871x_ioctl_linux.c +++ b/drivers/staging/rtl8712/rtl871x_ioctl_linux.c @@ -100,10 +100,10 @@ static inline void handle_pairwise_key(struct sta_info *psta, memcpy(psta->x_UncstKey.skey, param->u.crypt.key, (param->u.crypt. key_len > 16 ? 16 : param->u.crypt.key_len)); if (strcmp(param->u.crypt.alg, "TKIP") == 0) { /* set mic key */ - memcpy(psta->tkiptxmickey. skey, &(param->u.crypt. - key[16]), 8); - memcpy(psta->tkiprxmickey. skey, &(param->u.crypt. - key[24]), 8); + memcpy(psta->tkiptxmickey. skey, + &(param->u.crypt.key[16]), 8); + memcpy(psta->tkiprxmickey. skey, + &(param->u.crypt.key[24]), 8); padapter->securitypriv. busetkipkey = false; mod_timer(&padapter->securitypriv.tkip_timer, jiffies + msecs_to_jiffies(50)); |