]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/arm926ejs/mx28/debug.h
define dummy macros or extern decls depending on DEBUG
[karo-tx-uboot.git] / arch / arm / cpu / arm926ejs / mx28 / debug.h
1 #ifdef DEBUG
2 extern void printhex(int data);
3 extern void printdec(int data);
4 extern void dprintf(const char *fmt, ...);
5 #else
6 #define printhex(d) do { } while (0)
7 #define printdec(d) do { } while (0)
8 #define dprintf(fmt...) do { } while (0)
9 #endif