diff options
author | Bob Moore <robert.moore@intel.com> | 2009-03-18 21:54:31 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-27 12:11:05 -0400 |
commit | f28ad2c3daf0691081d91488df4d9d101e1a2b5d (patch) | |
tree | d6745d37047ea7f49796d0391496cffa997cb66a /drivers | |
parent | ee6a0fbd0ccb7736a3be56630e3ad65ceddfb5bd (diff) |
ACPICA: Fix PCI configuration space port address range
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/acpica/hwvalid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/hwvalid.c b/drivers/acpi/acpica/hwvalid.c index 105b818eba45..bd3c937b0ac0 100644 --- a/drivers/acpi/acpica/hwvalid.c +++ b/drivers/acpi/acpica/hwvalid.c | |||
@@ -100,7 +100,7 @@ static const struct acpi_port_info acpi_protected_ports[] = { | |||
100 | {"PIC1", 0x00A0, 0x00A1, ACPI_ALWAYS_ILLEGAL}, | 100 | {"PIC1", 0x00A0, 0x00A1, ACPI_ALWAYS_ILLEGAL}, |
101 | {"IDMA", 0x00C0, 0x00DF, ACPI_OSI_WIN_XP}, | 101 | {"IDMA", 0x00C0, 0x00DF, ACPI_OSI_WIN_XP}, |
102 | {"ELCR", 0x04D0, 0x04D1, ACPI_ALWAYS_ILLEGAL}, | 102 | {"ELCR", 0x04D0, 0x04D1, ACPI_ALWAYS_ILLEGAL}, |
103 | {"PCI", 0x0CF8, 0x0D00, ACPI_OSI_WIN_XP} | 103 | {"PCI", 0x0CF8, 0x0CFF, ACPI_OSI_WIN_XP} |
104 | }; | 104 | }; |
105 | 105 | ||
106 | #define ACPI_PORT_INFO_ENTRIES ACPI_ARRAY_LENGTH (acpi_protected_ports) | 106 | #define ACPI_PORT_INFO_ENTRIES ACPI_ARRAY_LENGTH (acpi_protected_ports) |