diff options
Diffstat (limited to 'drivers/acpi/utilities/utglobal.c')
-rw-r--r-- | drivers/acpi/utilities/utglobal.c | 38 |
1 files changed, 7 insertions, 31 deletions
diff --git a/drivers/acpi/utilities/utglobal.c b/drivers/acpi/utilities/utglobal.c index e8ae417c9848..e666c71be0bf 100644 --- a/drivers/acpi/utilities/utglobal.c +++ b/drivers/acpi/utilities/utglobal.c | |||
@@ -181,30 +181,6 @@ const char *acpi_gbl_highest_dstate_names[4] = { | |||
181 | "_S4D" | 181 | "_S4D" |
182 | }; | 182 | }; |
183 | 183 | ||
184 | /* | ||
185 | * Strings supported by the _OSI predefined (internal) method. | ||
186 | * When adding strings, be sure to update ACPI_NUM_OSI_STRINGS. | ||
187 | */ | ||
188 | const char *acpi_gbl_valid_osi_strings[ACPI_NUM_OSI_STRINGS] = { | ||
189 | /* Operating System Vendor Strings */ | ||
190 | |||
191 | "Linux", | ||
192 | "Windows 2000", | ||
193 | "Windows 2001", | ||
194 | "Windows 2001 SP0", | ||
195 | "Windows 2001 SP1", | ||
196 | "Windows 2001 SP2", | ||
197 | "Windows 2001 SP3", | ||
198 | "Windows 2001 SP4", | ||
199 | "Windows 2001.1", | ||
200 | "Windows 2001.1 SP1", /* Added 03/2006 */ | ||
201 | "Windows 2006", /* Added 03/2006 */ | ||
202 | |||
203 | /* Feature Group Strings */ | ||
204 | |||
205 | "Extended Address Space Descriptor" | ||
206 | }; | ||
207 | |||
208 | /******************************************************************************* | 184 | /******************************************************************************* |
209 | * | 185 | * |
210 | * Namespace globals | 186 | * Namespace globals |
@@ -317,9 +293,9 @@ char acpi_ut_hex_to_ascii_char(acpi_integer integer, u32 position) | |||
317 | * | 293 | * |
318 | ******************************************************************************/ | 294 | ******************************************************************************/ |
319 | 295 | ||
320 | struct acpi_table_list acpi_gbl_table_lists[NUM_ACPI_TABLE_TYPES]; | 296 | struct acpi_table_list acpi_gbl_table_lists[ACPI_TABLE_ID_MAX + 1]; |
321 | 297 | ||
322 | struct acpi_table_support acpi_gbl_table_data[NUM_ACPI_TABLE_TYPES] = { | 298 | struct acpi_table_support acpi_gbl_table_data[ACPI_TABLE_ID_MAX + 1] = { |
323 | /*********** Name, Signature, Global typed pointer Signature size, Type How many allowed?, Contains valid AML? */ | 299 | /*********** Name, Signature, Global typed pointer Signature size, Type How many allowed?, Contains valid AML? */ |
324 | 300 | ||
325 | /* RSDP 0 */ {RSDP_NAME, RSDP_SIG, NULL, sizeof(RSDP_SIG) - 1, | 301 | /* RSDP 0 */ {RSDP_NAME, RSDP_SIG, NULL, sizeof(RSDP_SIG) - 1, |
@@ -483,9 +459,9 @@ char *acpi_ut_get_region_name(u8 space_id) | |||
483 | { | 459 | { |
484 | 460 | ||
485 | if (space_id >= ACPI_USER_REGION_BEGIN) { | 461 | if (space_id >= ACPI_USER_REGION_BEGIN) { |
486 | return ("user_defined_region"); | 462 | return ("UserDefinedRegion"); |
487 | } else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) { | 463 | } else if (space_id >= ACPI_NUM_PREDEFINED_REGIONS) { |
488 | return ("invalid_space_id"); | 464 | return ("InvalidSpaceId"); |
489 | } | 465 | } |
490 | 466 | ||
491 | return (ACPI_CAST_PTR(char, acpi_gbl_region_types[space_id])); | 467 | return (ACPI_CAST_PTR(char, acpi_gbl_region_types[space_id])); |
@@ -519,7 +495,7 @@ char *acpi_ut_get_event_name(u32 event_id) | |||
519 | { | 495 | { |
520 | 496 | ||
521 | if (event_id > ACPI_EVENT_MAX) { | 497 | if (event_id > ACPI_EVENT_MAX) { |
522 | return ("invalid_event_iD"); | 498 | return ("InvalidEventID"); |
523 | } | 499 | } |
524 | 500 | ||
525 | return (ACPI_CAST_PTR(char, acpi_gbl_event_types[event_id])); | 501 | return (ACPI_CAST_PTR(char, acpi_gbl_event_types[event_id])); |
@@ -774,7 +750,7 @@ void acpi_ut_init_globals(void) | |||
774 | acpi_status status; | 750 | acpi_status status; |
775 | u32 i; | 751 | u32 i; |
776 | 752 | ||
777 | ACPI_FUNCTION_TRACE("ut_init_globals"); | 753 | ACPI_FUNCTION_TRACE(ut_init_globals); |
778 | 754 | ||
779 | /* Create all memory caches */ | 755 | /* Create all memory caches */ |
780 | 756 | ||
@@ -785,7 +761,7 @@ void acpi_ut_init_globals(void) | |||
785 | 761 | ||
786 | /* ACPI table structure */ | 762 | /* ACPI table structure */ |
787 | 763 | ||
788 | for (i = 0; i < NUM_ACPI_TABLE_TYPES; i++) { | 764 | for (i = 0; i < (ACPI_TABLE_ID_MAX + 1); i++) { |
789 | acpi_gbl_table_lists[i].next = NULL; | 765 | acpi_gbl_table_lists[i].next = NULL; |
790 | acpi_gbl_table_lists[i].count = 0; | 766 | acpi_gbl_table_lists[i].count = 0; |
791 | } | 767 | } |