projects
/
platform
/
kernel
/
kernel-mfld-blackbay.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee6a0fb
)
ACPICA: Fix PCI configuration space port address range
author
Bob Moore
<robert.moore@intel.com>
Thu, 19 Mar 2009 01:54:31 +0000
(09:54 +0800)
committer
Len 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
patch
|
blob
|
history
diff --git
a/drivers/acpi/acpica/hwvalid.c
b/drivers/acpi/acpica/hwvalid.c
index
105b818
..
bd3c937
100644
(file)
--- 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[] = {
{"PIC1", 0x00A0, 0x00A1, ACPI_ALWAYS_ILLEGAL},
{"IDMA", 0x00C0, 0x00DF, ACPI_OSI_WIN_XP},
{"ELCR", 0x04D0, 0x04D1, ACPI_ALWAYS_ILLEGAL},
- {"PCI", 0x0CF8, 0x0
D00
, ACPI_OSI_WIN_XP}
+ {"PCI", 0x0CF8, 0x0
CFF
, ACPI_OSI_WIN_XP}
};
#define ACPI_PORT_INFO_ENTRIES ACPI_ARRAY_LENGTH (acpi_protected_ports)