summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/core/rtw_debug.c
diff options
context:
space:
mode:
authorMayank Bareja2015-08-03 13:23:01 +0200
committerGreg Kroah-Hartman2015-08-04 02:54:04 +0200
commit4e0fa71c934287c160e264b3d5dd0e5c0824f6f9 (patch)
treee93be023bb36223bbb9b0e32a3794d3550f58c19 /drivers/staging/rtl8188eu/core/rtw_debug.c
parentStaging: rts5208: Fix code indentation warning as detected by checkpatch.pl (diff)
downloadkernel-qcow2-linux-4e0fa71c934287c160e264b3d5dd0e5c0824f6f9.tar.gz
kernel-qcow2-linux-4e0fa71c934287c160e264b3d5dd0e5c0824f6f9.tar.xz
kernel-qcow2-linux-4e0fa71c934287c160e264b3d5dd0e5c0824f6f9.zip
Staging: rtl8188eu/core: fixed code indentation warning as reported by checkpatch.pl
fixed code indentation warning as detected with checkpatch.pl. Replaced spaces with tabs. Signed-off-by: Mayank Bareja <mbareja@visteon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/core/rtw_debug.c')
-rw-r--r--drivers/staging/rtl8188eu/core/rtw_debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_debug.c b/drivers/staging/rtl8188eu/core/rtw_debug.c
index 12beab046a4a..993c7db87a1a 100644
--- a/drivers/staging/rtl8188eu/core/rtw_debug.c
+++ b/drivers/staging/rtl8188eu/core/rtw_debug.c
@@ -919,7 +919,7 @@ int proc_get_best_channel(char *page, char **start,
/* 5G */
if (pmlmeext->channel_set[i].ChannelNum >= 36 &&
pmlmeext->channel_set[i].ChannelNum < 140) {
- /* Find primary channel */
+ /* Find primary channel */
if (((pmlmeext->channel_set[i].ChannelNum - 36) % 8 == 0) &&
(pmlmeext->channel_set[i].rx_count < pmlmeext->channel_set[index_5G].rx_count)) {
index_5G = i;
@@ -929,7 +929,7 @@ int proc_get_best_channel(char *page, char **start,
if (pmlmeext->channel_set[i].ChannelNum >= 149 &&
pmlmeext->channel_set[i].ChannelNum < 165) {
- /* find primary channel */
+ /* find primary channel */
if (((pmlmeext->channel_set[i].ChannelNum - 149) % 8 == 0) &&
(pmlmeext->channel_set[i].rx_count < pmlmeext->channel_set[index_5G].rx_count)) {
index_5G = i;