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 коммит произвёл Greg Kroah-Hartman
Родитель eca4e5f58b
Коммит a4ecdcbfc4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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