diff options
author | Bob Moore <robert.moore@intel.com> | 2012-07-11 21:40:10 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-07-17 00:05:51 -0400 |
commit | ba494beeaa69bc0fb01eb89464ad5d57d26e3901 (patch) | |
tree | 804996ccb531af38f91853bd9b8055b65cd2ac6b /drivers/acpi/acpica/exdump.c | |
parent | 75e7386b104b27b1158bf7d13c69d5317f0033ca (diff) |
ACPICA: AcpiSrc: Fix some translation issues for Linux conversion
Fixes issues like this:
i_aSL -> iASL
00-7_f -> 00-7F
local_fADT -> local_FADT
execute_oSI -> execute_OSI
Also, in function headers, the parameters are now translated to
lower case (with underscores if necessary.)
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/exdump.c')
-rw-r--r-- | drivers/acpi/acpica/exdump.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/acpi/acpica/exdump.c b/drivers/acpi/acpica/exdump.c index 26c56545804..213c081776f 100644 --- a/drivers/acpi/acpica/exdump.c +++ b/drivers/acpi/acpica/exdump.c | |||
@@ -323,7 +323,7 @@ static struct acpi_exdump_info *acpi_ex_dump_info[] = { | |||
323 | * FUNCTION: acpi_ex_dump_object | 323 | * FUNCTION: acpi_ex_dump_object |
324 | * | 324 | * |
325 | * PARAMETERS: obj_desc - Descriptor to dump | 325 | * PARAMETERS: obj_desc - Descriptor to dump |
326 | * Info - Info table corresponding to this object | 326 | * info - Info table corresponding to this object |
327 | * type | 327 | * type |
328 | * | 328 | * |
329 | * RETURN: None | 329 | * RETURN: None |
@@ -449,7 +449,7 @@ acpi_ex_dump_object(union acpi_operand_object *obj_desc, | |||
449 | * FUNCTION: acpi_ex_dump_operand | 449 | * FUNCTION: acpi_ex_dump_operand |
450 | * | 450 | * |
451 | * PARAMETERS: *obj_desc - Pointer to entry to be dumped | 451 | * PARAMETERS: *obj_desc - Pointer to entry to be dumped |
452 | * Depth - Current nesting depth | 452 | * depth - Current nesting depth |
453 | * | 453 | * |
454 | * RETURN: None | 454 | * RETURN: None |
455 | * | 455 | * |
@@ -731,7 +731,7 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) | |||
731 | * | 731 | * |
732 | * FUNCTION: acpi_ex_dump_operands | 732 | * FUNCTION: acpi_ex_dump_operands |
733 | * | 733 | * |
734 | * PARAMETERS: Operands - A list of Operand objects | 734 | * PARAMETERS: operands - A list of Operand objects |
735 | * opcode_name - AML opcode name | 735 | * opcode_name - AML opcode name |
736 | * num_operands - Operand count for this opcode | 736 | * num_operands - Operand count for this opcode |
737 | * | 737 | * |
@@ -774,8 +774,8 @@ acpi_ex_dump_operands(union acpi_operand_object **operands, | |||
774 | * | 774 | * |
775 | * FUNCTION: acpi_ex_out* functions | 775 | * FUNCTION: acpi_ex_out* functions |
776 | * | 776 | * |
777 | * PARAMETERS: Title - Descriptive text | 777 | * PARAMETERS: title - Descriptive text |
778 | * Value - Value to be displayed | 778 | * value - Value to be displayed |
779 | * | 779 | * |
780 | * DESCRIPTION: Object dump output formatting functions. These functions | 780 | * DESCRIPTION: Object dump output formatting functions. These functions |
781 | * reduce the number of format strings required and keeps them | 781 | * reduce the number of format strings required and keeps them |
@@ -797,8 +797,8 @@ static void acpi_ex_out_pointer(char *title, void *value) | |||
797 | * | 797 | * |
798 | * FUNCTION: acpi_ex_dump_namespace_node | 798 | * FUNCTION: acpi_ex_dump_namespace_node |
799 | * | 799 | * |
800 | * PARAMETERS: Node - Descriptor to dump | 800 | * PARAMETERS: node - Descriptor to dump |
801 | * Flags - Force display if TRUE | 801 | * flags - Force display if TRUE |
802 | * | 802 | * |
803 | * DESCRIPTION: Dumps the members of the given.Node | 803 | * DESCRIPTION: Dumps the members of the given.Node |
804 | * | 804 | * |
@@ -830,7 +830,7 @@ void acpi_ex_dump_namespace_node(struct acpi_namespace_node *node, u32 flags) | |||
830 | * | 830 | * |
831 | * FUNCTION: acpi_ex_dump_reference_obj | 831 | * FUNCTION: acpi_ex_dump_reference_obj |
832 | * | 832 | * |
833 | * PARAMETERS: Object - Descriptor to dump | 833 | * PARAMETERS: object - Descriptor to dump |
834 | * | 834 | * |
835 | * DESCRIPTION: Dumps a reference object | 835 | * DESCRIPTION: Dumps a reference object |
836 | * | 836 | * |
@@ -887,8 +887,8 @@ static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc) | |||
887 | * FUNCTION: acpi_ex_dump_package_obj | 887 | * FUNCTION: acpi_ex_dump_package_obj |
888 | * | 888 | * |
889 | * PARAMETERS: obj_desc - Descriptor to dump | 889 | * PARAMETERS: obj_desc - Descriptor to dump |
890 | * Level - Indentation Level | 890 | * level - Indentation Level |
891 | * Index - Package index for this object | 891 | * index - Package index for this object |
892 | * | 892 | * |
893 | * DESCRIPTION: Dumps the elements of the package | 893 | * DESCRIPTION: Dumps the elements of the package |
894 | * | 894 | * |
@@ -980,7 +980,7 @@ acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc, | |||
980 | * FUNCTION: acpi_ex_dump_object_descriptor | 980 | * FUNCTION: acpi_ex_dump_object_descriptor |
981 | * | 981 | * |
982 | * PARAMETERS: obj_desc - Descriptor to dump | 982 | * PARAMETERS: obj_desc - Descriptor to dump |
983 | * Flags - Force display if TRUE | 983 | * flags - Force display if TRUE |
984 | * | 984 | * |
985 | * DESCRIPTION: Dumps the members of the object descriptor given. | 985 | * DESCRIPTION: Dumps the members of the object descriptor given. |
986 | * | 986 | * |