summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/include/asm/debug_ll.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sandbox/include/asm/debug_ll.h')
-rw-r--r--arch/sandbox/include/asm/debug_ll.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/debug_ll.h b/arch/sandbox/include/asm/debug_ll.h
new file mode 100644
index 0000000000..7bef871058
--- /dev/null
+++ b/arch/sandbox/include/asm/debug_ll.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef __ASM_DEBUG_LL__
+#define __ASM_DEBUG_LL__
+
+#undef putchar
+
+static inline void PUTC_LL(char ch)
+{
+ int putchar(int c);
+ putchar(ch);
+}
+
+#define putchar barebox_putchar
+
+#endif /* __ASM_DEBUG_LL__ */