mirror of https://gitee.com/openkylin/linux.git
Staging: rtl8192e: Remove extra space before break statement
Remove extra spaces before "break" statements to fix the following warnings from checkpatch.pl WARNING: Statements should start on a tabstop + break; WARNING: Statements should start on a tabstop + break; Signed-off-by: Puranjay Mohan <puranjay12@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
eca4e5f58b
commit
a4ecdcbfc4
|
@ -1913,7 +1913,7 @@ static void _rtl92e_update_received_rate_histogram_stats(
|
|||
break;
|
||||
case MGN_2M:
|
||||
rateIndex = 1;
|
||||
break;
|
||||
break;
|
||||
case MGN_5_5M:
|
||||
rateIndex = 2;
|
||||
break;
|
||||
|
@ -1931,7 +1931,7 @@ static void _rtl92e_update_received_rate_histogram_stats(
|
|||
break;
|
||||
case MGN_18M:
|
||||
rateIndex = 7;
|
||||
break;
|
||||
break;
|
||||
case MGN_24M:
|
||||
rateIndex = 8;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue