staging: ks7010: fix coding style issue of using __func__ instead of __FUNCTION__
authorChetan Sethi <cpsethi369@gmail.com>
Tue, 28 Feb 2017 03:01:07 +0000 (12:01 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:17:07 +0000 (09:17 +0100)
This patch fixes coding style issue of using __func__ instead of gcc
specific __FUNCTION__, warning as issued by checkpatch

Signed-off-by: Chetan Sethi <cpsethi369@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_wlan.h

index f1dfa73..0e40159 100644 (file)
@@ -38,7 +38,7 @@
 #define DPRINTK(n, fmt, args...) \
        do { \
                if (KS_WLAN_DEBUG > (n)) \
-                       pr_notice("%s: "fmt, __FUNCTION__, ## args); \
+                       pr_notice("%s: "fmt, __func__, ## args); \
        } while (0)
 #else
 #define DPRINTK(n, fmt, args...)