From 9fe8679d3bfdbe9dc0dcf3f329885dfd1650473f Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Fri, 23 Nov 2012 09:48:32 +0100 Subject: debug_ll: Let architectures define PUTC_LL directly putc already is a regular barebox function. To avoid conflicts and confusions just let architectures define PUTC_LL directly instead of going through this addiotional redirection. Signed-off-by: Sascha Hauer --- include/debug_ll.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/debug_ll.h') diff --git a/include/debug_ll.h b/include/debug_ll.h index c7445731d6..c5f2df4c33 100644 --- a/include/debug_ll.h +++ b/include/debug_ll.h @@ -22,7 +22,6 @@ #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--; ) {\ -- cgit v1.2.3