WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-ppc-devel

[XenPPC] [xenppc-unstable] Fix ACM hypercall macros (broke the x86/64 an

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [xenppc-unstable] Fix ACM hypercall macros (broke the x86/64 and ia64 builds).
From: Xen patchbot-xenppc-unstable <patchbot-xenppc-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 02 Jun 2006 17:56:07 +0000
Delivery-date: Fri, 02 Jun 2006 10:57:47 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-ppc-devel-request@lists.xensource.com?subject=help>
List-id: Xen PPC development <xen-ppc-devel.lists.xensource.com>
List-post: <mailto:xen-ppc-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-ppc-devel-bounces@xxxxxxxxxxxxxxxxxxx
# 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-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [xenppc-unstable] Fix ACM hypercall macros (broke the x86/64 and ia64 builds)., Xen patchbot-xenppc-unstable <=