From: kfraser@dhcp93.uk.xensource.com Date: Wed, 31 May 2006 12:26:10 +0000 (+0100) Subject: Fix ACM hypercall macros (broke the x86/64 and ia64 builds). X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16013^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1f9df5417a2b1c67d2198d8564bafc74f683d743;p=xen.git Fix ACM hypercall macros (broke the x86/64 and ia64 builds). Signed-off-by: Keir Fraser --- diff --git a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h index 938d0aa99c..f4794d6684 100644 --- a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h +++ b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h @@ -250,7 +250,7 @@ static inline int HYPERVISOR_acm_op( unsigned int cmd, void *arg) { - return = _hypercall2(int, acm_op, cmd, arg); + return _hypercall2(int, acm_op, cmd, arg); } static inline int diff --git a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h index fd45934418..12d18d39df 100644 --- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h +++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h @@ -261,7 +261,7 @@ static inline int HYPERVISOR_acm_op( int cmd, void *arg) { - return = _hypercall2(int, acm_op, cmd, arg); + return _hypercall2(int, acm_op, cmd, arg); } static inline int