direct-io.hg
changeset 4759:71f9c2f7030e
bitkeeper revision 1.1389.5.9 (4278c4f0VAeQPVGBi1M71vwTpeJ-nQ)
acpi_scan_rsdp's parameters are (start, len) and not (start, end).
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
acpi_scan_rsdp's parameters are (start, len) and not (start, end).
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Wed May 04 12:49:52 2005 +0000 (2005-05-04) |
parents | f0d5219e295c |
children | 08b215440aaa |
files | linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c |
line diff
1.1 --- a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c Wed May 04 10:16:35 2005 +0000 1.2 +++ b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/acpi/boot.c Wed May 04 12:49:52 2005 +0000 1.3 @@ -656,7 +656,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 __set_fixmap_ma(FIX_ACPI_RSDP_PAGE, rsdp_phys, PAGE_KERNEL); 1.11