staging: rtl8187se: fix conditional statement indent
This patch fixes the following checkpatch warning: WARNING: suspect code indent for conditional statements (24, 26) Signed-off-by: Teodora Baluta <teobaluta@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
69e222d98e
commit
ea748af2ce
|
@ -501,13 +501,13 @@ int ieee80211_rtl_xmit(struct sk_buff *skb,
|
||||||
bytes = bytes_last_frag;
|
bytes = bytes_last_frag;
|
||||||
}
|
}
|
||||||
if (ieee->current_network.QoS_Enable) {
|
if (ieee->current_network.QoS_Enable) {
|
||||||
/*
|
/*
|
||||||
* add 1 only indicate to corresponding seq number
|
* add 1 only indicate to corresponding seq
|
||||||
* control 2006/7/12
|
* number control 2006/7/12
|
||||||
*/
|
*/
|
||||||
frag_hdr->seq_ctl = cpu_to_le16(ieee->seq_ctrl[UP2AC(skb->priority)+1]<<4 | i);
|
frag_hdr->seq_ctl = cpu_to_le16(ieee->seq_ctrl[UP2AC(skb->priority)+1]<<4 | i);
|
||||||
} else {
|
} else {
|
||||||
frag_hdr->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0]<<4 | i);
|
frag_hdr->seq_ctl = cpu_to_le16(ieee->seq_ctrl[0]<<4 | i);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Put a SNAP header on the first fragment */
|
/* Put a SNAP header on the first fragment */
|
||||||
|
|
Loading…
Reference in New Issue