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

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

staging: ks7010: fix coding style issue of using pr_notice instead of printk

parent 05be989d
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)) \
			printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args); \
			pr_notice("%s: "fmt, __FUNCTION__, ## args); \
	} while (0)
#else
#define DPRINTK(n, fmt, args...)