Commit 1f610736 authored by Aaron Lawrence's avatar Aaron Lawrence Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192e: rtllib_crypt_tkip: split multiple assignments



Split a multiple assignments statement to individual assignments
on different lines in accordance with the Linux kernel coding-style
regulations. Also repositioned comments on it and the statement
before for increased legibility. The multiple assignments issue
was found by the checkpatch script, with the comments legibility
issue were through direct observation.

Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Signed-off-by: default avatarAaron Lawrence <t4rmin@zohomail.com>
Link: https://lore.kernel.org/r/a9ab257d0042afd3b3231eefe4f58c0c3ac7649f.1666787061.git.t4rmin@zohomail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8d1dcc72
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -488,9 +488,13 @@ static void michael_mic_hdr(struct sk_buff *skb, u8 *hdr)
		break;
	}

	hdr[12] = 0; /* priority */
	/* priority */
	hdr[12] = 0;

	hdr[13] = hdr[14] = hdr[15] = 0; /* reserved */
	/* reserved */
	hdr[13] = 0;
	hdr[14] = 0;
	hdr[15] = 0;
}

static int rtllib_michael_mic_add(struct sk_buff *skb, int hdr_len, void *priv)