Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d670333e authored by Chetan Sethi's avatar Chetan Sethi Committed by Greg Kroah-Hartman
Browse files

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: default avatarChetan Sethi <cpsethi369@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1227d769
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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...)