Commit 3cbd2279 authored by Alexander Mikhalevich's avatar Alexander Mikhalevich Committed by Greg Kroah-Hartman
Browse files

staging: rtl8712: Fix checkpatch.pl warning



WARNING: Avoid multiple line dereference - prefer 'param->u.crypt.key'

Signed-off-by: default avatarAlexander Mikhalevich <alex.mikhalevich@gmail.com>
Acked-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1b59ea84
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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));