aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/hwxface.c
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2012-07-11 21:40:10 -0400
committerLen Brown <len.brown@intel.com>2012-07-17 00:05:51 -0400
commitba494beeaa69bc0fb01eb89464ad5d57d26e3901 (patch)
tree804996ccb531af38f91853bd9b8055b65cd2ac6b /drivers/acpi/acpica/hwxface.c
parent75e7386b104b27b1158bf7d13c69d5317f0033ca (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/hwxface.c')
-rw-r--r--drivers/acpi/acpica/hwxface.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/acpi/acpica/hwxface.c b/drivers/acpi/acpica/hwxface.c
index a716fede4f25..7bfd649d1996 100644
--- a/drivers/acpi/acpica/hwxface.c
+++ b/drivers/acpi/acpica/hwxface.c
@@ -104,8 +104,8 @@ ACPI_EXPORT_SYMBOL(acpi_reset)
104 * 104 *
105 * FUNCTION: acpi_read 105 * FUNCTION: acpi_read
106 * 106 *
107 * PARAMETERS: Value - Where the value is returned 107 * PARAMETERS: value - Where the value is returned
108 * Reg - GAS register structure 108 * reg - GAS register structure
109 * 109 *
110 * RETURN: Status 110 * RETURN: Status
111 * 111 *
@@ -113,7 +113,7 @@ ACPI_EXPORT_SYMBOL(acpi_reset)
113 * 113 *
114 * LIMITATIONS: <These limitations also apply to acpi_write> 114 * LIMITATIONS: <These limitations also apply to acpi_write>
115 * bit_width must be exactly 8, 16, 32, or 64. 115 * bit_width must be exactly 8, 16, 32, or 64.
116 * space_iD must be system_memory or system_iO. 116 * space_ID must be system_memory or system_IO.
117 * bit_offset and access_width are currently ignored, as there has 117 * bit_offset and access_width are currently ignored, as there has
118 * not been a need to implement these. 118 * not been a need to implement these.
119 * 119 *
@@ -196,8 +196,8 @@ ACPI_EXPORT_SYMBOL(acpi_read)
196 * 196 *
197 * FUNCTION: acpi_write 197 * FUNCTION: acpi_write
198 * 198 *
199 * PARAMETERS: Value - Value to be written 199 * PARAMETERS: value - Value to be written
200 * Reg - GAS register structure 200 * reg - GAS register structure
201 * 201 *
202 * RETURN: Status 202 * RETURN: Status
203 * 203 *
@@ -441,7 +441,7 @@ ACPI_EXPORT_SYMBOL(acpi_write_bit_register)
441 * *sleep_type_a - Where SLP_TYPa is returned 441 * *sleep_type_a - Where SLP_TYPa is returned
442 * *sleep_type_b - Where SLP_TYPb is returned 442 * *sleep_type_b - Where SLP_TYPb is returned
443 * 443 *
444 * RETURN: Status - ACPI status 444 * RETURN: status - ACPI status
445 * 445 *
446 * DESCRIPTION: Obtain the SLP_TYPa and SLP_TYPb values for the requested sleep 446 * DESCRIPTION: Obtain the SLP_TYPa and SLP_TYPb values for the requested sleep
447 * state. 447 * state.