xen: arm: remove dummy HYPERVISOR_arch_0 hypercall
authorIan Campbell <ian.campbell@citrix.com>
Mon, 22 Jul 2013 18:16:33 +0000 (19:16 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Mon, 29 Jul 2013 15:01:05 +0000 (16:01 +0100)
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
xen/arch/arm/traps.c

index bbd60aa0f83750521dbef3a7f5c8f0fa3cb99523..f2ffcb7ae5f1808362e5ada3fdb970f7d69ca9b3 100644 (file)
@@ -653,12 +653,6 @@ void do_unexpected_trap(const char *msg, struct cpu_user_regs *regs)
     while(1);
 }
 
-unsigned long do_arch_0(unsigned int cmd, unsigned long long value)
-{
-        printk("do_arch_0 cmd=%x arg=%llx\n", cmd, value);
-        return 0;
-}
-
 typedef unsigned long (*arm_hypercall_fn_t)(
     unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);
 
@@ -681,7 +675,6 @@ typedef struct {
 static arm_hypercall_t arm_hypercall_table[] = {
     HYPERCALL(memory_op, 2),
     HYPERCALL(domctl, 1),
-    HYPERCALL(arch_0, 2),
     HYPERCALL(sched_op, 2),
     HYPERCALL(console_io, 3),
     HYPERCALL(xen_version, 2),