ACPICA: Fix PCI configuration space port address range
authorBob Moore <robert.moore@intel.com>
Thu, 19 Mar 2009 01:54:31 +0000 (09:54 +0800)
committerLen Brown <len.brown@intel.com>
Fri, 27 Mar 2009 16:11:05 +0000 (12:11 -0400)
Microsoft website uses 0xCF8-0xD00. Should be 0xCF8-0xCFF (Two
32-bit registers.)

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
drivers/acpi/acpica/hwvalid.c

index 105b818..bd3c937 100644 (file)
@@ -100,7 +100,7 @@ static const struct acpi_port_info acpi_protected_ports[] = {
        {"PIC1", 0x00A0, 0x00A1, ACPI_ALWAYS_ILLEGAL},
        {"IDMA", 0x00C0, 0x00DF, ACPI_OSI_WIN_XP},
        {"ELCR", 0x04D0, 0x04D1, ACPI_ALWAYS_ILLEGAL},
-       {"PCI", 0x0CF8, 0x0D00, ACPI_OSI_WIN_XP}
+       {"PCI", 0x0CF8, 0x0CFF, ACPI_OSI_WIN_XP}
 };
 
 #define ACPI_PORT_INFO_ENTRIES  ACPI_ARRAY_LENGTH (acpi_protected_ports)