diff options
author | Bob Moore <robert.moore@intel.com> | 2012-07-15 22:01:36 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-07-17 00:05:50 -0400 |
commit | 540b85ab223f00e9715cee0f7a205f636b5eb4b8 (patch) | |
tree | 37b593f1beb7482e2e4b4fa5ab3ccaad78059c4f /drivers/acpi/acpica | |
parent | cf48958e84abb3b2dbb4202d0edbfce6aff65ce7 (diff) |
ACPICA: Add PCC address space to space ID decode function
ACPI 5.0 added PCC space ID.
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/acpi/acpica')
-rw-r--r-- | drivers/acpi/acpica/utdecode.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/drivers/acpi/acpica/utdecode.c b/drivers/acpi/acpica/utdecode.c index c8c130cc6560..28134aee3af5 100644 --- a/drivers/acpi/acpica/utdecode.c +++ b/drivers/acpi/acpica/utdecode.c | |||
@@ -129,16 +129,17 @@ char acpi_ut_hex_to_ascii_char(u64 integer, u32 position) | |||
129 | /* Region type decoding */ | 129 | /* Region type decoding */ |
130 | 130 | ||
131 | const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = { | 131 | const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = { |
132 | "SystemMemory", | 132 | "SystemMemory", /* 0x00 */ |
133 | "SystemIO", | 133 | "SystemIO", /* 0x01 */ |
134 | "PCI_Config", | 134 | "PCI_Config", /* 0x02 */ |
135 | "EmbeddedControl", | 135 | "EmbeddedControl", /* 0x03 */ |
136 | "SMBus", | 136 | "SMBus", /* 0x04 */ |
137 | "SystemCMOS", | 137 | "SystemCMOS", /* 0x05 */ |
138 | "PCIBARTarget", | 138 | "PCIBARTarget", /* 0x06 */ |
139 | "IPMI", | 139 | "IPMI", /* 0x07 */ |
140 | "GeneralPurposeIo", | 140 | "GeneralPurposeIo", /* 0x08 */ |
141 | "GenericSerialBus" | 141 | "GenericSerialBus", /* 0x09 */ |
142 | "PCC" /* 0x0A */ | ||
142 | }; | 143 | }; |
143 | 144 | ||
144 | char *acpi_ut_get_region_name(u8 space_id) | 145 | char *acpi_ut_get_region_name(u8 space_id) |