staging: ks7010: fix coding style issue of using __func__ instead of __FUNCTION__

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>
This commit is contained in:
Chetan Sethi 2017-02-28 12:01:07 +09:00 committed by Greg Kroah-Hartman
parent 1227d76968
commit d670333e80

View file

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