From: Chetan Sethi Date: Tue, 28 Feb 2017 03:00:45 +0000 (+0900) Subject: staging: ks7010: fix coding style issue of using pr_notice instead of printk X-Git-Tag: v4.12-rc1~84^2~819 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=1227d7696835ae5b53a7f01649dda487bd436b1f;p=linux.git staging: ks7010: fix coding style issue of using pr_notice instead of printk Signed-off-by: Chetan Sethi Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ks7010/ks_wlan.h b/drivers/staging/ks7010/ks_wlan.h index 7098c6fe4568..f1dfa73a779c 100644 --- a/drivers/staging/ks7010/ks_wlan.h +++ b/drivers/staging/ks7010/ks_wlan.h @@ -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...)