video: s3c-fb: use pr_debug instead of printk
This patch uses pr_debug instead of printk to allow dynamic debugging. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
This commit is contained in:
parent
35b37dc4fd
commit
65302e48ce
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@
|
|||
#ifdef CONFIG_FB_S3C_DEBUG_REGWRITE
|
||||
#undef writel
|
||||
#define writel(v, r) do { \
|
||||
printk(KERN_DEBUG "%s: %08x => %p\n", __func__, (unsigned int)v, r); \
|
||||
pr_debug("%s: %08x => %p\n", __func__, (unsigned int)v, r); \
|
||||
__raw_writel(v, r); \
|
||||
} while (0)
|
||||
#endif /* FB_S3C_DEBUG_REGWRITE */
|
||||
|
|
Loading…
Reference in a new issue