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:
Puranjay Mohan 2019-05-02 00:53:24 +05:30 committed by Greg Kroah-Hartman
parent eca4e5f58b
commit a4ecdcbfc4
1 changed files with 2 additions and 2 deletions

View File

@ -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;