staging:rtl8192u: Correct comparison with NULL - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Sun, 7 Oct 2018 21:40:25 +0000 (22:40 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 9 Oct 2018 13:26:04 +0000 (15:26 +0200)
Correct code to remote comparison with NULL, this clears the resulting
checkpatch issue.

This is a coding style change which should not impact runtime code
execution.

Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/ieee80211_module.c

index dec8d52..d7975aa 100644 (file)
@@ -280,7 +280,7 @@ int __init ieee80211_debug_init(void)
        ieee80211_debug_level = debug;
 
        ieee80211_proc = proc_mkdir(DRV_NAME, init_net.proc_net);
-       if (ieee80211_proc == NULL) {
+       if (!ieee80211_proc) {
                IEEE80211_ERROR("Unable to create " DRV_NAME
                                " proc directory\n");
                return -EIO;