diff options
Diffstat (limited to 'drivers/acpi/acpica/utxferror.c')
-rw-r--r-- | drivers/acpi/acpica/utxferror.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/acpi/acpica/utxferror.c b/drivers/acpi/acpica/utxferror.c index 87aaddf130ec..6d63cc39b9ae 100644 --- a/drivers/acpi/acpica/utxferror.c +++ b/drivers/acpi/acpica/utxferror.c | |||
@@ -53,7 +53,7 @@ ACPI_MODULE_NAME("utxferror") | |||
53 | * This module is used for the in-kernel ACPICA as well as the ACPICA | 53 | * This module is used for the in-kernel ACPICA as well as the ACPICA |
54 | * tools/applications. | 54 | * tools/applications. |
55 | * | 55 | * |
56 | * For the i_aSL compiler case, the output is redirected to stderr so that | 56 | * For the iASL compiler case, the output is redirected to stderr so that |
57 | * any of the various ACPI errors and warnings do not appear in the output | 57 | * any of the various ACPI errors and warnings do not appear in the output |
58 | * files, for either the compiler or disassembler portions of the tool. | 58 | * files, for either the compiler or disassembler portions of the tool. |
59 | */ | 59 | */ |
@@ -70,7 +70,7 @@ extern FILE *acpi_gbl_output_file; | |||
70 | 70 | ||
71 | #else | 71 | #else |
72 | /* | 72 | /* |
73 | * non-i_aSL case - no redirection, nothing to do | 73 | * non-iASL case - no redirection, nothing to do |
74 | */ | 74 | */ |
75 | #define ACPI_MSG_REDIRECT_BEGIN | 75 | #define ACPI_MSG_REDIRECT_BEGIN |
76 | #define ACPI_MSG_REDIRECT_END | 76 | #define ACPI_MSG_REDIRECT_END |
@@ -95,7 +95,7 @@ extern FILE *acpi_gbl_output_file; | |||
95 | * | 95 | * |
96 | * PARAMETERS: module_name - Caller's module name (for error output) | 96 | * PARAMETERS: module_name - Caller's module name (for error output) |
97 | * line_number - Caller's line number (for error output) | 97 | * line_number - Caller's line number (for error output) |
98 | * Format - Printf format string + additional args | 98 | * format - Printf format string + additional args |
99 | * | 99 | * |
100 | * RETURN: None | 100 | * RETURN: None |
101 | * | 101 | * |
@@ -126,8 +126,8 @@ ACPI_EXPORT_SYMBOL(acpi_error) | |||
126 | * | 126 | * |
127 | * PARAMETERS: module_name - Caller's module name (for error output) | 127 | * PARAMETERS: module_name - Caller's module name (for error output) |
128 | * line_number - Caller's line number (for error output) | 128 | * line_number - Caller's line number (for error output) |
129 | * Status - Status to be formatted | 129 | * status - Status to be formatted |
130 | * Format - Printf format string + additional args | 130 | * format - Printf format string + additional args |
131 | * | 131 | * |
132 | * RETURN: None | 132 | * RETURN: None |
133 | * | 133 | * |
@@ -161,7 +161,7 @@ ACPI_EXPORT_SYMBOL(acpi_exception) | |||
161 | * | 161 | * |
162 | * PARAMETERS: module_name - Caller's module name (for error output) | 162 | * PARAMETERS: module_name - Caller's module name (for error output) |
163 | * line_number - Caller's line number (for error output) | 163 | * line_number - Caller's line number (for error output) |
164 | * Format - Printf format string + additional args | 164 | * format - Printf format string + additional args |
165 | * | 165 | * |
166 | * RETURN: None | 166 | * RETURN: None |
167 | * | 167 | * |
@@ -192,7 +192,7 @@ ACPI_EXPORT_SYMBOL(acpi_warning) | |||
192 | * | 192 | * |
193 | * PARAMETERS: module_name - Caller's module name (for error output) | 193 | * PARAMETERS: module_name - Caller's module name (for error output) |
194 | * line_number - Caller's line number (for error output) | 194 | * line_number - Caller's line number (for error output) |
195 | * Format - Printf format string + additional args | 195 | * format - Printf format string + additional args |
196 | * | 196 | * |
197 | * RETURN: None | 197 | * RETURN: None |
198 | * | 198 | * |
@@ -339,9 +339,9 @@ acpi_ut_predefined_warning(const char *module_name, | |||
339 | * | 339 | * |
340 | * PARAMETERS: module_name - Caller's module name (for error output) | 340 | * PARAMETERS: module_name - Caller's module name (for error output) |
341 | * line_number - Caller's line number (for error output) | 341 | * line_number - Caller's line number (for error output) |
342 | * Pathname - Full pathname to the node | 342 | * pathname - Full pathname to the node |
343 | * node_flags - From Namespace node for the method/object | 343 | * node_flags - From Namespace node for the method/object |
344 | * Format - Printf format string + additional args | 344 | * format - Printf format string + additional args |
345 | * | 345 | * |
346 | * RETURN: None | 346 | * RETURN: None |
347 | * | 347 | * |
@@ -441,9 +441,9 @@ acpi_ut_namespace_error(const char *module_name, | |||
441 | * | 441 | * |
442 | * PARAMETERS: module_name - Caller's module name (for error output) | 442 | * PARAMETERS: module_name - Caller's module name (for error output) |
443 | * line_number - Caller's line number (for error output) | 443 | * line_number - Caller's line number (for error output) |
444 | * Message - Error message to use on failure | 444 | * message - Error message to use on failure |
445 | * prefix_node - Prefix relative to the path | 445 | * prefix_node - Prefix relative to the path |
446 | * Path - Path to the node (optional) | 446 | * path - Path to the node (optional) |
447 | * method_status - Execution status | 447 | * method_status - Execution status |
448 | * | 448 | * |
449 | * RETURN: None | 449 | * RETURN: None |