summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-10-23 16:16:07 +0300
committerTom Rini <trini@konsulko.com>2020-10-23 16:16:07 +0300
commitc3d3104506963eec94af80523e4a31808e52bda7 (patch)
tree0a849f08813664047e15b0dade8bfb09671f6804 /arch
parent2c483706269f6f9f3a0a762ba1e04ab931bde97b (diff)
downloadu-boot-c3d3104506963eec94af80523e4a31808e52bda7.tar.xz
Revert "arch: arm/xen: add putc() for debugging"
This reverts commit 3a51b2a2c3cedc0d2a9ce981b8e00ab8cefcb6b7. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/include/asm/xen/hypercall.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/include/asm/xen/hypercall.h b/arch/arm/include/asm/xen/hypercall.h
index 121ccfcc60..a4fd077079 100644
--- a/arch/arm/include/asm/xen/hypercall.h
+++ b/arch/arm/include/asm/xen/hypercall.h
@@ -19,10 +19,4 @@ int HYPERVISOR_sched_op(int cmd, void *arg);
int HYPERVISOR_event_channel_op(int cmd, void *arg);
unsigned long HYPERVISOR_hvm_op(int op, void *arg);
int HYPERVISOR_memory_op(unsigned int cmd, void *arg);
-
-static inline void xen_debug_putc(int c)
-{
- register int v __asm__ ("x0") = c;
- __asm__ __volatile__("hvc 0xfffe" : "=r" (v) : "0" (v));
-}
#endif /* _ASM_ARM_XEN_HYPERCALL_H */