Commit 44a22dc3 authored by Benjamin Sherman's avatar Benjamin Sherman Committed by Greg Kroah-Hartman

staging: vt6656: change alignment to match parenthesis

Change indentation to match parentheses.  This complies with the Linux
kernel coding style and improves readability.
Signed-off-by: default avatarBenjamin Sherman <benjamin@bensherman.io>
Link: https://lore.kernel.org/r/20190716045754.fivh5n44bybe2uce@valkyrie-mobile.localdomainSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 384329dd
...@@ -287,12 +287,12 @@ static u16 vnt_rxtx_datahead_g(struct vnt_usb_send_context *tx_context, ...@@ -287,12 +287,12 @@ static u16 vnt_rxtx_datahead_g(struct vnt_usb_send_context *tx_context,
buf->duration_a = vnt_get_duration_le(priv, buf->duration_a = vnt_get_duration_le(priv,
tx_context->pkt_type, need_ack); tx_context->pkt_type, need_ack);
buf->duration_b = vnt_get_duration_le(priv, buf->duration_b = vnt_get_duration_le(priv,
PK_TYPE_11B, need_ack); PK_TYPE_11B, need_ack);
} }
buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate); buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
buf->time_stamp_off_b = vnt_time_stamp_off(priv, buf->time_stamp_off_b = vnt_time_stamp_off(priv,
priv->top_cck_basic_rate); priv->top_cck_basic_rate);
tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr); tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
...@@ -325,7 +325,7 @@ static u16 vnt_rxtx_datahead_g_fb(struct vnt_usb_send_context *tx_context, ...@@ -325,7 +325,7 @@ static u16 vnt_rxtx_datahead_g_fb(struct vnt_usb_send_context *tx_context,
buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate); buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
buf->time_stamp_off_b = vnt_time_stamp_off(priv, buf->time_stamp_off_b = vnt_time_stamp_off(priv,
priv->top_cck_basic_rate); priv->top_cck_basic_rate);
tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr); tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
...@@ -655,7 +655,7 @@ static u16 vnt_rxtx_ab(struct vnt_usb_send_context *tx_context, ...@@ -655,7 +655,7 @@ static u16 vnt_rxtx_ab(struct vnt_usb_send_context *tx_context,
u8 need_ack = tx_context->need_ack; u8 need_ack = tx_context->need_ack;
buf->rrv_time = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type, buf->rrv_time = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
frame_len, current_rate, need_ack); frame_len, current_rate, need_ack);
if (need_mic) if (need_mic)
head = &tx_head->tx_ab.tx.mic.head; head = &tx_head->tx_ab.tx.mic.head;
...@@ -1036,7 +1036,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv, struct sk_buff *skb) ...@@ -1036,7 +1036,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv, struct sk_buff *skb)
/* Get Duration and TimeStampOff */ /* Get Duration and TimeStampOff */
short_head->duration = vnt_get_duration_le(priv, short_head->duration = vnt_get_duration_le(priv,
PK_TYPE_11B, false); PK_TYPE_11B, false);
short_head->time_stamp_off = short_head->time_stamp_off =
vnt_time_stamp_off(priv, current_rate); vnt_time_stamp_off(priv, current_rate);
} }
......
...@@ -216,7 +216,7 @@ static void vnt_submit_rx_urb_complete(struct urb *urb) ...@@ -216,7 +216,7 @@ static void vnt_submit_rx_urb_complete(struct urb *urb)
} }
urb->transfer_buffer = skb_put(rcb->skb, urb->transfer_buffer = skb_put(rcb->skb,
skb_tailroom(rcb->skb)); skb_tailroom(rcb->skb));
} }
if (usb_submit_urb(urb, GFP_ATOMIC)) { if (usb_submit_urb(urb, GFP_ATOMIC)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment