Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfbfa052 authored by Michael S. Hansen's avatar Michael S. Hansen Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: rxtx.c Removed multiple dereferencing



Fixes checkpatch warning: Avoid multiple line dereference

Signed-off-by: default avatarMichael S. Hansen <michael.schacht.hansen@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 42aa03dc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -692,8 +692,8 @@ static u16 vnt_generate_tx_parameter(struct vnt_usb_send_context *tx_context,
	    tx_context->pkt_type == PK_TYPE_11GA) {
		if (need_rts) {
			if (need_mic)
				*mic_hdr = &tx_buffer->
						tx_head.tx_rts.tx.mic.hdr;
				*mic_hdr =
					&tx_buffer->tx_head.tx_rts.tx.mic.hdr;

			return vnt_rxtx_rts(tx_context, &tx_buffer->tx_head,
					    need_mic);