diff options
author | Puranjay Mohan <puranjay12@gmail.com> | 2019-05-01 22:23:24 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-02 20:43:18 +0300 |
commit | a4ecdcbfc4dd91417706e4644e4e93de43b34bea (patch) | |
tree | 9010855212019106e3305ba6634982401383815e /drivers/staging/rtl8192e | |
parent | eca4e5f58b758e74e6065eb8bcab57067f1427f6 (diff) | |
download | linux-a4ecdcbfc4dd91417706e4644e4e93de43b34bea.tar.xz |
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>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c index 0353f7ee5341..ef92ce957466 100644 --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c @@ -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; |