summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-11-23 09:48:32 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-12-05 19:48:50 +0100
commit9fe8679d3bfdbe9dc0dcf3f329885dfd1650473f (patch)
tree8c5b4a049182df504945e119f229afce67b9b5a7 /include
parent0a6da026219c496eac1200839214fbcf8806c849 (diff)
downloadbarebox-9fe8679d3bfdbe9dc0dcf3f329885dfd1650473f.tar.gz
barebox-9fe8679d3bfdbe9dc0dcf3f329885dfd1650473f.tar.xz
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 <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/debug_ll.h1
1 files changed, 0 insertions, 1 deletions
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 <mach/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--; ) {\