Commit e004d7ac authored by Javier F. Arias's avatar Javier F. Arias Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: Fix function call format



Fix function call format by following the coding style guidelines
for argument wrapping in function calls.
Issue found by checkpatch.

Signed-off-by: default avatarJavier F. Arias <jarias.linux@gmail.com>
Link: https://lore.kernel.org/r/828984012f4c58f9d10647511f98005e4d1d5184.1571284318.git.jarias.linux@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fc477694
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -1616,15 +1616,10 @@ static sint aes_decipher(u8 *key, uint hdrlen,
	payload_index = hdrlen + 8; /*  8 is for extiv */

	for (i = 0; i < num_blocks; i++) {
		construct_ctr_preload(
				ctr_preload,
				a4_exists,
				qc_exists,
				pframe,
				pn_vector,
				i + 1,
				frtype /*  add for CONFIG_IEEE80211W, none 11w also can use */
			);
		construct_ctr_preload(ctr_preload, a4_exists,
				      qc_exists, pframe,
				      pn_vector, i + 1,
				      frtype); /*  add for CONFIG_IEEE80211W, none 11w also can use */

			aes128k128d(key, ctr_preload, aes_out);
			bitwise_xor(aes_out, &pframe[payload_index], chain_buffer);