direct-io.hg
changeset 1493:4e971c8daf85
bitkeeper revision 1.974 (40d16550Q8t3Srq0HGmIUHKxujf8ow)
Fix ACPI search bug.
Fix ACPI search bug.
author | kaf24@scramble.cl.cam.ac.uk |
---|---|
date | Thu Jun 17 09:33:04 2004 +0000 (2004-06-17) |
parents | 50574defb9f7 |
children | 8fc674dc158e ce351da91680 |
files | xen/arch/x86/acpi.c |
line diff
1.1 --- a/xen/arch/x86/acpi.c Thu Jun 17 09:26:12 2004 +0000 1.2 +++ b/xen/arch/x86/acpi.c Thu Jun 17 09:33:04 2004 +0000 1.3 @@ -286,7 +286,7 @@ acpi_find_rsdp (void) 1.4 */ 1.5 rsdp_phys = acpi_scan_rsdp (0, 0x400); 1.6 if (!rsdp_phys) 1.7 - rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF); 1.8 + rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000); 1.9 1.10 return rsdp_phys; 1.11 }