9
0
Fork 0

fix pr_debug

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2009-02-25 00:50:05 +01:00
parent fa38059695
commit 2672196646
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@
#define pr_emerg(fmt, arg...) printf(fmt, ##arg)
#ifdef DEBUG
#define pr_debug(fmt, arg...) printf(UBOOT_DEBUG, fmt, ##arg)
#define pr_debug(fmt, arg...) printf(fmt, ##arg)
#else
#define pr_debug(fmt, arg...) do {} while(0)
#endif