[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Fix ACM hypercall macros (broke the x86/64 and ia64 builds).
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxxxx # Node ID 94947f282fa27edb6f04252ebe547804a9fbe8e1 # Parent 414dabe82a31841a2eb019f2d76fdbfb392c42b4 Fix ACM hypercall macros (broke the x86/64 and ia64 builds). Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> --- linux-2.6-xen-sparse/include/asm-ia64/hypercall.h | 2 +- linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -r 414dabe82a31 -r 94947f282fa2 linux-2.6-xen-sparse/include/asm-ia64/hypercall.h --- a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h Wed May 31 11:31:52 2006 +0100 +++ b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h Wed May 31 13:26:10 2006 +0100 @@ -250,7 +250,7 @@ HYPERVISOR_acm_op( 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 -r 414dabe82a31 -r 94947f282fa2 linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h --- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h Wed May 31 11:31:52 2006 +0100 +++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h Wed May 31 13:26:10 2006 +0100 @@ -261,7 +261,7 @@ HYPERVISOR_acm_op( HYPERVISOR_acm_op( int cmd, void *arg) { - return = _hypercall2(int, acm_op, cmd, arg); + return _hypercall2(int, acm_op, cmd, arg); } static inline int _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |