Commit 57744c8d authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

staging: vt6656: fix indentation on break statement

The break statement is indented one level too deep, fix this.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarQuentin Deslandes <quentin.deslandes@itdev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 61959885
...@@ -166,7 +166,7 @@ static void vnt_calculate_ofdm_rate(u16 rate, u8 bb_type, ...@@ -166,7 +166,7 @@ static void vnt_calculate_ofdm_rate(u16 rate, u8 bb_type,
*tx_rate = 0x8b; *tx_rate = 0x8b;
*rsv_time = 30; *rsv_time = 30;
} }
break; break;
case RATE_9M: case RATE_9M:
if (bb_type == BB_TYPE_11A) { if (bb_type == BB_TYPE_11A) {
*tx_rate = 0x9f; *tx_rate = 0x9f;
......
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