Commit 164eec46 authored by Gabriela Bittencourt's avatar Gabriela Bittencourt Committed by Greg Kroah-Hartman

staging: vt6656: reorganize characters so the lines are under 80 ch

Cleans up warnings of "line over 80 characters"
Signed-off-by: default avatarGabriela Bittencourt <gabrielabittencourt00@gmail.com>
Link: https://lore.kernel.org/r/20191006194030.8854-1-gabrielabittencourt00@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6d9a930c
...@@ -112,11 +112,11 @@ static u32 vnt_get_rsvtime(struct vnt_private *priv, u8 pkt_type, ...@@ -112,11 +112,11 @@ static u32 vnt_get_rsvtime(struct vnt_private *priv, u8 pkt_type,
frame_length, rate); frame_length, rate);
if (pkt_type == PK_TYPE_11B) if (pkt_type == PK_TYPE_11B)
ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type, ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type, 14,
14, (u16)priv->top_cck_basic_rate); (u16)priv->top_cck_basic_rate);
else else
ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type, ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type, 14,
14, (u16)priv->top_ofdm_basic_rate); (u16)priv->top_ofdm_basic_rate);
if (need_ack) if (need_ack)
return data_time + priv->sifs + ack_time; return data_time + priv->sifs + ack_time;
......
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