From 3cbd227956c2f8f61c53068d176443d46fa81e64 Mon Sep 17 00:00:00 2001 From: Alexander Mikhalevich Date: Sat, 25 Feb 2017 23:42:08 +0300 Subject: [PATCH] staging: rtl8712: Fix checkpatch.pl warning WARNING: Avoid multiple line dereference - prefer 'param->u.crypt.key' Signed-off-by: Alexander Mikhalevich Acked-by: Larry Finger Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8712/rtl871x_ioctl_linux.c | 8 ++++---- 1 file 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)); -- 2.11.0