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/utobject.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/utobject.c')
-rw-r--r-- | drivers/acpi/acpica/utobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/acpica/utobject.c b/drivers/acpi/acpica/utobject.c index d0441ca52b71..655f0799a391 100644 --- a/drivers/acpi/acpica/utobject.c +++ b/drivers/acpi/acpica/utobject.c | |||
@@ -69,7 +69,7 @@ acpi_ut_get_element_length(u8 object_type, | |||
69 | * PARAMETERS: module_name - Source file name of caller | 69 | * PARAMETERS: module_name - Source file name of caller |
70 | * line_number - Line number of caller | 70 | * line_number - Line number of caller |
71 | * component_id - Component type of caller | 71 | * component_id - Component type of caller |
72 | * Type - ACPI Type of the new object | 72 | * type - ACPI Type of the new object |
73 | * | 73 | * |
74 | * RETURN: A new internal object, null on failure | 74 | * RETURN: A new internal object, null on failure |
75 | * | 75 | * |
@@ -150,7 +150,7 @@ union acpi_operand_object *acpi_ut_create_internal_object_dbg(const char | |||
150 | * | 150 | * |
151 | * FUNCTION: acpi_ut_create_package_object | 151 | * FUNCTION: acpi_ut_create_package_object |
152 | * | 152 | * |
153 | * PARAMETERS: Count - Number of package elements | 153 | * PARAMETERS: count - Number of package elements |
154 | * | 154 | * |
155 | * RETURN: Pointer to a new Package object, null on failure | 155 | * RETURN: Pointer to a new Package object, null on failure |
156 | * | 156 | * |
@@ -323,7 +323,7 @@ union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size) | |||
323 | * | 323 | * |
324 | * FUNCTION: acpi_ut_valid_internal_object | 324 | * FUNCTION: acpi_ut_valid_internal_object |
325 | * | 325 | * |
326 | * PARAMETERS: Object - Object to be validated | 326 | * PARAMETERS: object - Object to be validated |
327 | * | 327 | * |
328 | * RETURN: TRUE if object is valid, FALSE otherwise | 328 | * RETURN: TRUE if object is valid, FALSE otherwise |
329 | * | 329 | * |
@@ -407,7 +407,7 @@ void *acpi_ut_allocate_object_desc_dbg(const char *module_name, | |||
407 | * | 407 | * |
408 | * FUNCTION: acpi_ut_delete_object_desc | 408 | * FUNCTION: acpi_ut_delete_object_desc |
409 | * | 409 | * |
410 | * PARAMETERS: Object - An Acpi internal object to be deleted | 410 | * PARAMETERS: object - An Acpi internal object to be deleted |
411 | * | 411 | * |
412 | * RETURN: None. | 412 | * RETURN: None. |
413 | * | 413 | * |