staging: vt6656: rxtx.c Removed multiple dereferencing
Fixes checkpatch warning: Avoid multiple line dereference Signed-off-by: Michael S. Hansen <michael.schacht.hansen@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
42aa03dc5c
commit
dfbfa05210
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue