direct-io.hg
changeset 7823:9c7aeec94f8a
Fix 64-bit build that I broke by making acpi table mapping
fixup dependent on CONFIG_XEN_X86 (that only xen/i386
defines).
Signed-off-by: Keir Fraser <keir@xensource.com>
fixup dependent on CONFIG_XEN_X86 (that only xen/i386
defines).
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Tue Nov 15 19:46:48 2005 +0100 (2005-11-15) |
parents | 10bafcc750fb |
children | e1142d983179 |
files | linux-2.6-xen-sparse/drivers/acpi/tables.c |
line diff
1.1 --- a/linux-2.6-xen-sparse/drivers/acpi/tables.c Tue Nov 15 19:19:02 2005 +0100 1.2 +++ b/linux-2.6-xen-sparse/drivers/acpi/tables.c Tue Nov 15 19:46:48 2005 +0100 1.3 @@ -565,7 +565,7 @@ acpi_table_get_sdt ( 1.4 * 1.5 * result: sdt_entry[] is initialized 1.6 */ 1.7 -#ifdef CONFIG_XEN_X86 1.8 +#if defined(CONFIG_XEN_X86) || defined(CONFIG_XEN_X86_64) 1.9 #define acpi_rsdp_phys_to_va(rsdp_phys) (__fix_to_virt(FIX_ACPI_RSDP_PAGE) + \ 1.10 (rsdp_phys & ~PAGE_MASK)) 1.11 #else