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/utxface.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/utxface.c')
-rw-r--r-- | drivers/acpi/acpica/utxface.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/acpi/acpica/utxface.c b/drivers/acpi/acpica/utxface.c index afa94f51ff0b..534179f1177b 100644 --- a/drivers/acpi/acpica/utxface.c +++ b/drivers/acpi/acpica/utxface.c | |||
@@ -131,7 +131,7 @@ acpi_status __init acpi_initialize_subsystem(void) | |||
131 | * | 131 | * |
132 | * FUNCTION: acpi_enable_subsystem | 132 | * FUNCTION: acpi_enable_subsystem |
133 | * | 133 | * |
134 | * PARAMETERS: Flags - Init/enable Options | 134 | * PARAMETERS: flags - Init/enable Options |
135 | * | 135 | * |
136 | * RETURN: Status | 136 | * RETURN: Status |
137 | * | 137 | * |
@@ -234,7 +234,7 @@ ACPI_EXPORT_SYMBOL(acpi_enable_subsystem) | |||
234 | * | 234 | * |
235 | * FUNCTION: acpi_initialize_objects | 235 | * FUNCTION: acpi_initialize_objects |
236 | * | 236 | * |
237 | * PARAMETERS: Flags - Init/enable Options | 237 | * PARAMETERS: flags - Init/enable Options |
238 | * | 238 | * |
239 | * RETURN: Status | 239 | * RETURN: Status |
240 | * | 240 | * |
@@ -409,7 +409,7 @@ ACPI_EXPORT_SYMBOL(acpi_subsystem_status) | |||
409 | * PARAMETERS: out_buffer - A buffer to receive the resources for the | 409 | * PARAMETERS: out_buffer - A buffer to receive the resources for the |
410 | * device | 410 | * device |
411 | * | 411 | * |
412 | * RETURN: Status - the status of the call | 412 | * RETURN: status - the status of the call |
413 | * | 413 | * |
414 | * DESCRIPTION: This function is called to get information about the current | 414 | * DESCRIPTION: This function is called to get information about the current |
415 | * state of the ACPI subsystem. It will return system information | 415 | * state of the ACPI subsystem. It will return system information |
@@ -480,8 +480,8 @@ ACPI_EXPORT_SYMBOL(acpi_get_system_info) | |||
480 | * | 480 | * |
481 | * FUNCTION: acpi_install_initialization_handler | 481 | * FUNCTION: acpi_install_initialization_handler |
482 | * | 482 | * |
483 | * PARAMETERS: Handler - Callback procedure | 483 | * PARAMETERS: handler - Callback procedure |
484 | * Function - Not (currently) used, see below | 484 | * function - Not (currently) used, see below |
485 | * | 485 | * |
486 | * RETURN: Status | 486 | * RETURN: Status |
487 | * | 487 | * |
@@ -618,7 +618,7 @@ ACPI_EXPORT_SYMBOL(acpi_remove_interface) | |||
618 | * | 618 | * |
619 | * FUNCTION: acpi_install_interface_handler | 619 | * FUNCTION: acpi_install_interface_handler |
620 | * | 620 | * |
621 | * PARAMETERS: Handler - The _OSI interface handler to install | 621 | * PARAMETERS: handler - The _OSI interface handler to install |
622 | * NULL means "remove existing handler" | 622 | * NULL means "remove existing handler" |
623 | * | 623 | * |
624 | * RETURN: Status | 624 | * RETURN: Status |
@@ -651,9 +651,9 @@ ACPI_EXPORT_SYMBOL(acpi_install_interface_handler) | |||
651 | * FUNCTION: acpi_check_address_range | 651 | * FUNCTION: acpi_check_address_range |
652 | * | 652 | * |
653 | * PARAMETERS: space_id - Address space ID | 653 | * PARAMETERS: space_id - Address space ID |
654 | * Address - Start address | 654 | * address - Start address |
655 | * Length - Length | 655 | * length - Length |
656 | * Warn - TRUE if warning on overlap desired | 656 | * warn - TRUE if warning on overlap desired |
657 | * | 657 | * |
658 | * RETURN: Count of the number of conflicts detected. | 658 | * RETURN: Count of the number of conflicts detected. |
659 | * | 659 | * |