ia64/xen-unstable
changeset 9297:d3b0d74702b5
Make asm macros use the generally accepted comma-separated arg-passing style.
Signed-off-by: Keir Fraser <keir@xensource.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Wed Mar 15 20:22:31 2006 +0100 (2006-03-15) |
parents | f85bb99187bf |
children | 1569bc48b0b8 |
files | xen/arch/x86/hvm/vmx/x86_32/exits.S xen/arch/x86/hvm/vmx/x86_64/exits.S |
line diff
1.1 --- a/xen/arch/x86/hvm/vmx/x86_32/exits.S Wed Mar 15 19:19:22 2006 +0100 1.2 +++ b/xen/arch/x86/hvm/vmx/x86_32/exits.S Wed Mar 15 20:22:31 2006 +0100 1.3 @@ -89,7 +89,7 @@ ENTRY(vmx_asm_vmexit_handler) 1.4 call vmx_vmexit_handler 1.5 jmp vmx_asm_do_resume 1.6 1.7 -.macro vmx_asm_common launch initialized 1.8 +.macro vmx_asm_common launch, initialized 1.9 1: 1.10 /* vmx_test_all_events */ 1.11 .if \initialized 1.12 @@ -140,10 +140,10 @@ 2: 1.13 .endm 1.14 1.15 ENTRY(vmx_asm_do_launch) 1.16 - vmx_asm_common 1 0 1.17 + vmx_asm_common 1, 0 1.18 1.19 ENTRY(vmx_asm_do_resume) 1.20 - vmx_asm_common 0 1 1.21 + vmx_asm_common 0, 1 1.22 1.23 ENTRY(vmx_asm_do_relaunch) 1.24 - vmx_asm_common 1 1 1.25 + vmx_asm_common 1, 1
2.1 --- a/xen/arch/x86/hvm/vmx/x86_64/exits.S Wed Mar 15 19:19:22 2006 +0100 2.2 +++ b/xen/arch/x86/hvm/vmx/x86_64/exits.S Wed Mar 15 20:22:31 2006 +0100 2.3 @@ -97,7 +97,7 @@ ENTRY(vmx_asm_vmexit_handler) 2.4 call vmx_vmexit_handler 2.5 jmp vmx_asm_do_resume 2.6 2.7 -.macro vmx_asm_common launch initialized 2.8 +.macro vmx_asm_common launch, initialized 2.9 1: 2.10 .if \initialized 2.11 /* vmx_test_all_events */ 2.12 @@ -147,10 +147,10 @@ 2: 2.13 .endm 2.14 2.15 ENTRY(vmx_asm_do_launch) 2.16 - vmx_asm_common 1 0 2.17 + vmx_asm_common 1, 0 2.18 2.19 ENTRY(vmx_asm_do_resume) 2.20 - vmx_asm_common 0 1 2.21 + vmx_asm_common 0, 1 2.22 2.23 ENTRY(vmx_asm_do_relaunch) 2.24 - vmx_asm_common 1 1 2.25 + vmx_asm_common 1, 1