summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoglekar Tejas <tjogleka@visteon.com>2015-06-14 03:01:06 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-06-13 20:43:43 -0700
commit73250a7311204bcc7c1803c6b96021f8b04f9903 (patch)
tree9f1afed81b56f85916240cf14061ae0e1b814524
parent38e127275fa5c88fb23ace8011eda05994c4ef78 (diff)
downloadlinux-stable-73250a7311204bcc7c1803c6b96021f8b04f9903.tar.gz
linux-stable-73250a7311204bcc7c1803c6b96021f8b04f9903.tar.bz2
linux-stable-73250a7311204bcc7c1803c6b96021f8b04f9903.zip
staging:rtl8723au:ioctl_cfg80211:spaces required around '>'
This patch removes the error given by checkpatch.pl " spaces required around that '>' " Signed-off-by: Joglekar Tejas <tjogleka@visteon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c
index bc95ce89af06..feb596123cc3 100644
--- a/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c
+++ b/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c
@@ -1041,7 +1041,7 @@ static u16 rtw_get_cur_max_rate(struct rtw_adapter *adapter)
while (pcur_bss->SupportedRates[i] != 0 &&
pcur_bss->SupportedRates[i] != 0xFF) {
rate = pcur_bss->SupportedRates[i] & 0x7F;
- if (rate>max_rate)
+ if (rate > max_rate)
max_rate = rate;
i++;
}