diff options
author | Louie Lu <louie.lu@hopebaytech.com> | 2016-09-02 18:15:07 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-02 14:55:54 +0200 |
commit | 8f8064e4ccc0579dae927246dd00b7ac6d6ffd89 (patch) | |
tree | 97de67ea5b98a9f1b108c67f9faeee379f51a15e | |
parent | d48f10fc616a82c8e761753fd6edf6b6f6b66bec (diff) | |
download | linux-8f8064e4ccc0579dae927246dd00b7ac6d6ffd89.tar.gz linux-8f8064e4ccc0579dae927246dd00b7ac6d6ffd89.tar.bz2 linux-8f8064e4ccc0579dae927246dd00b7ac6d6ffd89.zip |
staging: rtl8712: delete one space before if statement
This patch fixed minor checkpatch warning:
WARNING: Statements should start on a tabstop
Signed-off-by: Louie Lu <louie.lu@hopebaytech.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8712/os_intfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8712/os_intfs.c b/drivers/staging/rtl8712/os_intfs.c index b615fbfa30ab..cbe4de05d26b 100644 --- a/drivers/staging/rtl8712/os_intfs.c +++ b/drivers/staging/rtl8712/os_intfs.c @@ -425,7 +425,7 @@ static int netdev_open(struct net_device *pnetdev) else netif_wake_queue(pnetdev); - if (video_mode) + if (video_mode) enable_video_mode(padapter, cbw40_enable); /* start driver mlme relation timer */ start_drv_timers(padapter); |