OSDN Git Service

Staging: rtl8192e: Remove extra space before break statement
authorPuranjay Mohan <puranjay12@gmail.com>
Wed, 1 May 2019 19:23:24 +0000 (00:53 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 May 2019 17:43:18 +0000 (19:43 +0200)
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>
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c

index 0353f7e..ef92ce9 100644 (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;