diff options
Diffstat (limited to 'drivers/acpi/executer/exdump.c')
-rw-r--r-- | drivers/acpi/executer/exdump.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/acpi/executer/exdump.c b/drivers/acpi/executer/exdump.c index 1dfebf9e7074..7b9718e976bf 100644 --- a/drivers/acpi/executer/exdump.c +++ b/drivers/acpi/executer/exdump.c | |||
@@ -123,7 +123,7 @@ static struct acpi_exdump_info acpi_ex_dump_event[2] = { | |||
123 | 123 | ||
124 | static struct acpi_exdump_info acpi_ex_dump_method[8] = { | 124 | static struct acpi_exdump_info acpi_ex_dump_method[8] = { |
125 | {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL}, | 125 | {ACPI_EXD_INIT, ACPI_EXD_TABLE_SIZE(acpi_ex_dump_method), NULL}, |
126 | {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count), "param_count"}, | 126 | {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.param_count), "ParamCount"}, |
127 | {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.concurrency), "Concurrency"}, | 127 | {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.concurrency), "Concurrency"}, |
128 | {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.semaphore), "Semaphore"}, | 128 | {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(method.semaphore), "Semaphore"}, |
129 | {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.owner_id), "Owner Id"}, | 129 | {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(method.owner_id), "Owner Id"}, |
@@ -332,7 +332,7 @@ acpi_ex_dump_object(union acpi_operand_object *obj_desc, | |||
332 | 332 | ||
333 | if (!info) { | 333 | if (!info) { |
334 | acpi_os_printf | 334 | acpi_os_printf |
335 | ("ex_dump_object: Display not implemented for object type %s\n", | 335 | ("ExDumpObject: Display not implemented for object type %s\n", |
336 | acpi_ut_get_object_type_name(obj_desc)); | 336 | acpi_ut_get_object_type_name(obj_desc)); |
337 | return; | 337 | return; |
338 | } | 338 | } |
@@ -456,7 +456,7 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) | |||
456 | u32 length; | 456 | u32 length; |
457 | u32 index; | 457 | u32 index; |
458 | 458 | ||
459 | ACPI_FUNCTION_NAME("ex_dump_operand") | 459 | ACPI_FUNCTION_NAME(ex_dump_operand) |
460 | 460 | ||
461 | if (! | 461 | if (! |
462 | ((ACPI_LV_EXEC & acpi_dbg_level) | 462 | ((ACPI_LV_EXEC & acpi_dbg_level) |
@@ -525,7 +525,7 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) | |||
525 | 525 | ||
526 | case AML_REF_OF_OP: | 526 | case AML_REF_OF_OP: |
527 | 527 | ||
528 | acpi_os_printf("Reference: (ref_of) %p\n", | 528 | acpi_os_printf("Reference: (RefOf) %p\n", |
529 | obj_desc->reference.object); | 529 | obj_desc->reference.object); |
530 | break; | 530 | break; |
531 | 531 | ||
@@ -614,7 +614,7 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) | |||
614 | 614 | ||
615 | case ACPI_TYPE_PACKAGE: | 615 | case ACPI_TYPE_PACKAGE: |
616 | 616 | ||
617 | acpi_os_printf("Package [Len %X] element_array %p\n", | 617 | acpi_os_printf("Package [Len %X] ElementArray %p\n", |
618 | obj_desc->package.count, | 618 | obj_desc->package.count, |
619 | obj_desc->package.elements); | 619 | obj_desc->package.elements); |
620 | 620 | ||
@@ -666,13 +666,13 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) | |||
666 | 666 | ||
667 | case ACPI_TYPE_LOCAL_BANK_FIELD: | 667 | case ACPI_TYPE_LOCAL_BANK_FIELD: |
668 | 668 | ||
669 | acpi_os_printf("bank_field\n"); | 669 | acpi_os_printf("BankField\n"); |
670 | break; | 670 | break; |
671 | 671 | ||
672 | case ACPI_TYPE_LOCAL_REGION_FIELD: | 672 | case ACPI_TYPE_LOCAL_REGION_FIELD: |
673 | 673 | ||
674 | acpi_os_printf | 674 | acpi_os_printf |
675 | ("region_field: Bits=%X acc_width=%X Lock=%X Update=%X at byte=%X bit=%X of below:\n", | 675 | ("RegionField: Bits=%X AccWidth=%X Lock=%X Update=%X at byte=%X bit=%X of below:\n", |
676 | obj_desc->field.bit_length, | 676 | obj_desc->field.bit_length, |
677 | obj_desc->field.access_byte_width, | 677 | obj_desc->field.access_byte_width, |
678 | obj_desc->field.field_flags & AML_FIELD_LOCK_RULE_MASK, | 678 | obj_desc->field.field_flags & AML_FIELD_LOCK_RULE_MASK, |
@@ -685,12 +685,12 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) | |||
685 | 685 | ||
686 | case ACPI_TYPE_LOCAL_INDEX_FIELD: | 686 | case ACPI_TYPE_LOCAL_INDEX_FIELD: |
687 | 687 | ||
688 | acpi_os_printf("index_field\n"); | 688 | acpi_os_printf("IndexField\n"); |
689 | break; | 689 | break; |
690 | 690 | ||
691 | case ACPI_TYPE_BUFFER_FIELD: | 691 | case ACPI_TYPE_BUFFER_FIELD: |
692 | 692 | ||
693 | acpi_os_printf("buffer_field: %X bits at byte %X bit %X of\n", | 693 | acpi_os_printf("BufferField: %X bits at byte %X bit %X of\n", |
694 | obj_desc->buffer_field.bit_length, | 694 | obj_desc->buffer_field.bit_length, |
695 | obj_desc->buffer_field.base_byte_offset, | 695 | obj_desc->buffer_field.base_byte_offset, |
696 | obj_desc->buffer_field.start_field_bit_offset); | 696 | obj_desc->buffer_field.start_field_bit_offset); |
@@ -781,7 +781,7 @@ acpi_ex_dump_operands(union acpi_operand_object **operands, | |||
781 | { | 781 | { |
782 | acpi_native_uint i; | 782 | acpi_native_uint i; |
783 | 783 | ||
784 | ACPI_FUNCTION_NAME("ex_dump_operands"); | 784 | ACPI_FUNCTION_NAME(ex_dump_operands); |
785 | 785 | ||
786 | if (!ident) { | 786 | if (!ident) { |
787 | ident = "?"; | 787 | ident = "?"; |
@@ -1021,7 +1021,7 @@ acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc, | |||
1021 | void | 1021 | void |
1022 | acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags) | 1022 | acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags) |
1023 | { | 1023 | { |
1024 | ACPI_FUNCTION_TRACE("ex_dump_object_descriptor"); | 1024 | ACPI_FUNCTION_TRACE(ex_dump_object_descriptor); |
1025 | 1025 | ||
1026 | if (!obj_desc) { | 1026 | if (!obj_desc) { |
1027 | return_VOID; | 1027 | return_VOID; |
@@ -1050,7 +1050,7 @@ acpi_ex_dump_object_descriptor(union acpi_operand_object *obj_desc, u32 flags) | |||
1050 | 1050 | ||
1051 | if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) { | 1051 | if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) { |
1052 | acpi_os_printf | 1052 | acpi_os_printf |
1053 | ("ex_dump_object_descriptor: %p is not an ACPI operand object: [%s]\n", | 1053 | ("ExDumpObjectDescriptor: %p is not an ACPI operand object: [%s]\n", |
1054 | obj_desc, acpi_ut_get_descriptor_name(obj_desc)); | 1054 | obj_desc, acpi_ut_get_descriptor_name(obj_desc)); |
1055 | return_VOID; | 1055 | return_VOID; |
1056 | } | 1056 | } |