summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/raw/r852.h
diff options
context:
space:
mode:
authorShreeya Patel <shreeya.patel23498@gmail.com>2018-02-22 22:01:22 +0530
committerBoris Brezillon <boris.brezillon@bootlin.com>2018-03-15 15:57:05 +0100
commit63fa37f0c512481bd942e84b596ad58e1d4c84e2 (patch)
treea7f0ba27374007e47d6d39de773c383b5c9cb6cb /drivers/mtd/nand/raw/r852.h
parent26777d37216c976cf6fd196700133a38aa2c4b0f (diff)
downloadlinux-63fa37f0c512481bd942e84b596ad58e1d4c84e2.tar.bz2
mtd: rawnand: Replace printk() with appropriate pr_*() macro
Using pr_<loglevel>() is more concise than printk(KERN_<LOGLEVEL>). Replace printks having a log level with the appropriate pr_*() macros. Define pr_fmt() and remove other additional macros from the replaced printks. Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Diffstat (limited to 'drivers/mtd/nand/raw/r852.h')
-rw-r--r--drivers/mtd/nand/raw/r852.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/mtd/nand/raw/r852.h b/drivers/mtd/nand/raw/r852.h
index 8713c57f6207..1eed2fc2fa42 100644
--- a/drivers/mtd/nand/raw/r852.h
+++ b/drivers/mtd/nand/raw/r852.h
@@ -144,17 +144,14 @@ struct r852_device {
uint8_t ctlreg; /* cached contents of control reg */
};
-#define DRV_NAME "r852"
-
-
#define dbg(format, ...) \
if (debug) \
- printk(KERN_DEBUG DRV_NAME ": " format "\n", ## __VA_ARGS__)
+ pr_debug(format "\n", ## __VA_ARGS__)
#define dbg_verbose(format, ...) \
if (debug > 1) \
- printk(KERN_DEBUG DRV_NAME ": " format "\n", ## __VA_ARGS__)
+ pr_debug(format "\n", ## __VA_ARGS__)
#define message(format, ...) \
- printk(KERN_INFO DRV_NAME ": " format "\n", ## __VA_ARGS__)
+ pr_info(format "\n", ## __VA_ARGS__)