Commit f2588483 authored by Greg Donald's avatar Greg Donald Committed by Greg Kroah-Hartman

drivers: staging: rtl8192u: Fix switch and case should be at the same indent errors

Fix checkpatch.pl switch and case should be at the same indent errors
Signed-off-by: default avatarGreg Donald <gdonald@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0b4ef0a6
......@@ -1408,7 +1408,7 @@ static u8 MRateToHwRate8190Pci(u8 rate)
ret = DESC90_RATE54M;
break;
// HT rate since here
/* HT rate since here */
case MGN_MCS0:
ret = DESC90_RATEMCS0;
break;
......@@ -4314,9 +4314,7 @@ UpdateReceivedRateHistogramStatistics8190(struct net_device *dev,
preamble_guardinterval = 0;// long
switch (stats->rate) {
//
// CCK rate
//
/* CCK rate */
case MGN_1M:
rateIndex = 0;
break;
......@@ -4329,9 +4327,7 @@ UpdateReceivedRateHistogramStatistics8190(struct net_device *dev,
case MGN_11M:
rateIndex = 3;
break;
//
// Legacy OFDM rate
//
/* Legacy OFDM rate */
case MGN_6M:
rateIndex = 4;
break;
......@@ -4356,9 +4352,7 @@ UpdateReceivedRateHistogramStatistics8190(struct net_device *dev,
case MGN_54M:
rateIndex = 11;
break;
//
// 11n High throughput rate
//
/* 11n High throughput rate */
case MGN_MCS0:
rateIndex = 12;
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment