replaced board_printf() with xprintf()

This commit is contained in:
Markus Fröschle
2013-11-03 18:09:02 +00:00
parent a2f88ebc77
commit 18a1861c02

View File

@@ -173,7 +173,7 @@ static struct ehci {
#endif /* DEBUG */
#define err xprintf
#ifdef SHOW_INFO
#define info(format, arg...) board_printf("INFO: " format "\r\n", ## arg)
#define info(format, arg...) xprintf("INFO: " format "\r\n", ## arg)
#else
#define info(format, arg...) do {} while (0)
#endif