commit | 22490eb80ceb4ac07ef36fff253904fb4adf57f2 | [log] [tgz] |
---|---|---|
author | Linus Torvalds <torvalds@ppc970.osdl.org> | Fri May 06 15:39:23 2005 -0700 |
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | Fri May 06 15:39:23 2005 -0700 |
tree | d171a1f225cbf388a6b1ec07b0f15eddff237ec5 | |
parent | b3214970abbe983cd89842ae24ea00e21bba79f6 [diff] |
Fix acpi_find_rsdp() - acpi_scan_rsdp takes length, not end Noticed by Jakub Jermar <jermar@itbs.cz>
diff --git a/arch/i386/kernel/acpi/boot.c b/arch/i386/kernel/acpi/boot.c index 53eb5cf..848bb97 100644 --- a/arch/i386/kernel/acpi/boot.c +++ b/arch/i386/kernel/acpi/boot.c
@@ -650,7 +650,7 @@ */ rsdp_phys = acpi_scan_rsdp (0, 0x400); if (!rsdp_phys) - rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF); + rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000); return rsdp_phys; }