9
0
Fork 0

remove debugging rests

This commit is contained in:
Sascha Hauer 2007-07-12 09:25:47 +02:00
parent e47fa9d6ef
commit d3a537ef7e
1 changed files with 8 additions and 9 deletions

View File

@ -25,21 +25,20 @@
#ifndef __INCLUDE_DEBUG_LL_H__
#define __INCLUDE_DEBUG_LL_H__
#define PUTC(x) serial_putc(x)
//#if defined (CONFIG_DEBUG_LL)
//# include <asm/arch/debug_ll.h>
#if defined (CONFIG_DEBUG_LL)
# include <asm/arch/debug_ll.h>
#define PUTC_LL(x) putc(x)
# define PUTHEX_LL(value) ({ unsigned long v = (unsigned long) (value); \
int i; unsigned char ch; \
for (i = 8; i--; ) {\
ch = ((v >> (i*4)) & 0xf);\
ch += (ch >= 10) ? 'a' - 10 : '0';\
PUTC (ch); }})
//#else
//# define PUTC_LL(c) do {} while (0)
//# define PUTHEX_LL(v) do {} while (0)
PUTC_LL (ch); }})
#else
# define PUTC_LL(c) do {} while (0)
# define PUTHEX_LL(v) do {} while (0)
//#endif
#endif
#endif /* __INCLUDE_DEBUG_LL_H__ */