From d3a537ef7e390f79bb8bcaf718d2527da252148b Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 12 Jul 2007 09:25:47 +0200 Subject: remove debugging rests --- include/debug_ll.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'include/debug_ll.h') diff --git a/include/debug_ll.h b/include/debug_ll.h index f3772aa1fe..f06fa6e57a 100644 --- a/include/debug_ll.h +++ b/include/debug_ll.h @@ -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 +#if defined (CONFIG_DEBUG_LL) +# include +#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__ */ -- cgit v1.2.3