diff options
author | Bob Moore <robert.moore@intel.com> | 2012-10-30 22:26:55 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2012-11-14 18:31:26 -0500 |
commit | 73a3090a2160fb01317f5a44af6ee5a064a29625 (patch) | |
tree | ae9505645e07198991f9cb8b04c93c7e3e122283 /drivers/acpi/acpica/dsutils.c | |
parent | b9e17693576e4739cd267f59cbdfdd33c5eefe76 (diff) |
ACPICA: Remove extra spaces after periods within comments
This makes all comments consistent.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/dsutils.c')
-rw-r--r-- | drivers/acpi/acpica/dsutils.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/acpi/acpica/dsutils.c b/drivers/acpi/acpica/dsutils.c index 4bbdd6c7a3d0..afeb99f49482 100644 --- a/drivers/acpi/acpica/dsutils.c +++ b/drivers/acpi/acpica/dsutils.c | |||
@@ -61,7 +61,7 @@ ACPI_MODULE_NAME("dsutils") | |||
61 | * | 61 | * |
62 | * RETURN: None. | 62 | * RETURN: None. |
63 | * | 63 | * |
64 | * DESCRIPTION: Clear and remove a reference on an implicit return value. Used | 64 | * DESCRIPTION: Clear and remove a reference on an implicit return value. Used |
65 | * to delete "stale" return values (if enabled, the return value | 65 | * to delete "stale" return values (if enabled, the return value |
66 | * from every operator is saved at least momentarily, in case the | 66 | * from every operator is saved at least momentarily, in case the |
67 | * parent method exits.) | 67 | * parent method exits.) |
@@ -107,7 +107,7 @@ void acpi_ds_clear_implicit_return(struct acpi_walk_state *walk_state) | |||
107 | * | 107 | * |
108 | * DESCRIPTION: Implements the optional "implicit return". We save the result | 108 | * DESCRIPTION: Implements the optional "implicit return". We save the result |
109 | * of every ASL operator and control method invocation in case the | 109 | * of every ASL operator and control method invocation in case the |
110 | * parent method exit. Before storing a new return value, we | 110 | * parent method exit. Before storing a new return value, we |
111 | * delete the previous return value. | 111 | * delete the previous return value. |
112 | * | 112 | * |
113 | ******************************************************************************/ | 113 | ******************************************************************************/ |
@@ -198,7 +198,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op, | |||
198 | * | 198 | * |
199 | * If there is no parent, or the parent is a scope_op, we are executing | 199 | * If there is no parent, or the parent is a scope_op, we are executing |
200 | * at the method level. An executing method typically has no parent, | 200 | * at the method level. An executing method typically has no parent, |
201 | * since each method is parsed separately. A method invoked externally | 201 | * since each method is parsed separately. A method invoked externally |
202 | * via execute_control_method has a scope_op as the parent. | 202 | * via execute_control_method has a scope_op as the parent. |
203 | */ | 203 | */ |
204 | if ((!op->common.parent) || | 204 | if ((!op->common.parent) || |
@@ -223,7 +223,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op, | |||
223 | } | 223 | } |
224 | 224 | ||
225 | /* | 225 | /* |
226 | * Decide what to do with the result based on the parent. If | 226 | * Decide what to do with the result based on the parent. If |
227 | * the parent opcode will not use the result, delete the object. | 227 | * the parent opcode will not use the result, delete the object. |
228 | * Otherwise leave it as is, it will be deleted when it is used | 228 | * Otherwise leave it as is, it will be deleted when it is used |
229 | * as an operand later. | 229 | * as an operand later. |
@@ -266,7 +266,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op, | |||
266 | 266 | ||
267 | /* | 267 | /* |
268 | * These opcodes allow term_arg(s) as operands and therefore | 268 | * These opcodes allow term_arg(s) as operands and therefore |
269 | * the operands can be method calls. The result is used. | 269 | * the operands can be method calls. The result is used. |
270 | */ | 270 | */ |
271 | goto result_used; | 271 | goto result_used; |
272 | 272 | ||
@@ -284,7 +284,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op, | |||
284 | AML_BANK_FIELD_OP)) { | 284 | AML_BANK_FIELD_OP)) { |
285 | /* | 285 | /* |
286 | * These opcodes allow term_arg(s) as operands and therefore | 286 | * These opcodes allow term_arg(s) as operands and therefore |
287 | * the operands can be method calls. The result is used. | 287 | * the operands can be method calls. The result is used. |
288 | */ | 288 | */ |
289 | goto result_used; | 289 | goto result_used; |
290 | } | 290 | } |
@@ -329,9 +329,9 @@ acpi_ds_is_result_used(union acpi_parse_object * op, | |||
329 | * | 329 | * |
330 | * RETURN: Status | 330 | * RETURN: Status |
331 | * | 331 | * |
332 | * DESCRIPTION: Used after interpretation of an opcode. If there is an internal | 332 | * DESCRIPTION: Used after interpretation of an opcode. If there is an internal |
333 | * result descriptor, check if the parent opcode will actually use | 333 | * result descriptor, check if the parent opcode will actually use |
334 | * this result. If not, delete the result now so that it will | 334 | * this result. If not, delete the result now so that it will |
335 | * not become orphaned. | 335 | * not become orphaned. |
336 | * | 336 | * |
337 | ******************************************************************************/ | 337 | ******************************************************************************/ |
@@ -376,7 +376,7 @@ acpi_ds_delete_result_if_not_used(union acpi_parse_object *op, | |||
376 | * | 376 | * |
377 | * RETURN: Status | 377 | * RETURN: Status |
378 | * | 378 | * |
379 | * DESCRIPTION: Resolve all operands to their values. Used to prepare | 379 | * DESCRIPTION: Resolve all operands to their values. Used to prepare |
380 | * arguments to a control method invocation (a call from one | 380 | * arguments to a control method invocation (a call from one |
381 | * method to another.) | 381 | * method to another.) |
382 | * | 382 | * |
@@ -391,7 +391,7 @@ acpi_status acpi_ds_resolve_operands(struct acpi_walk_state *walk_state) | |||
391 | 391 | ||
392 | /* | 392 | /* |
393 | * Attempt to resolve each of the valid operands | 393 | * Attempt to resolve each of the valid operands |
394 | * Method arguments are passed by reference, not by value. This means | 394 | * Method arguments are passed by reference, not by value. This means |
395 | * that the actual objects are passed, not copies of the objects. | 395 | * that the actual objects are passed, not copies of the objects. |
396 | */ | 396 | */ |
397 | for (i = 0; i < walk_state->num_operands; i++) { | 397 | for (i = 0; i < walk_state->num_operands; i++) { |
@@ -451,7 +451,7 @@ void acpi_ds_clear_operands(struct acpi_walk_state *walk_state) | |||
451 | * RETURN: Status | 451 | * RETURN: Status |
452 | * | 452 | * |
453 | * DESCRIPTION: Translate a parse tree object that is an argument to an AML | 453 | * DESCRIPTION: Translate a parse tree object that is an argument to an AML |
454 | * opcode to the equivalent interpreter object. This may include | 454 | * opcode to the equivalent interpreter object. This may include |
455 | * looking up a name or entering a new name into the internal | 455 | * looking up a name or entering a new name into the internal |
456 | * namespace. | 456 | * namespace. |
457 | * | 457 | * |
@@ -496,9 +496,9 @@ acpi_ds_create_operand(struct acpi_walk_state *walk_state, | |||
496 | /* | 496 | /* |
497 | * Special handling for buffer_field declarations. This is a deferred | 497 | * Special handling for buffer_field declarations. This is a deferred |
498 | * opcode that unfortunately defines the field name as the last | 498 | * opcode that unfortunately defines the field name as the last |
499 | * parameter instead of the first. We get here when we are performing | 499 | * parameter instead of the first. We get here when we are performing |
500 | * the deferred execution, so the actual name of the field is already | 500 | * the deferred execution, so the actual name of the field is already |
501 | * in the namespace. We don't want to attempt to look it up again | 501 | * in the namespace. We don't want to attempt to look it up again |
502 | * because we may be executing in a different scope than where the | 502 | * because we may be executing in a different scope than where the |
503 | * actual opcode exists. | 503 | * actual opcode exists. |
504 | */ | 504 | */ |
@@ -605,8 +605,8 @@ acpi_ds_create_operand(struct acpi_walk_state *walk_state, | |||
605 | /* | 605 | /* |
606 | * If the name is null, this means that this is an | 606 | * If the name is null, this means that this is an |
607 | * optional result parameter that was not specified | 607 | * optional result parameter that was not specified |
608 | * in the original ASL. Create a Zero Constant for a | 608 | * in the original ASL. Create a Zero Constant for a |
609 | * placeholder. (Store to a constant is a Noop.) | 609 | * placeholder. (Store to a constant is a Noop.) |
610 | */ | 610 | */ |
611 | opcode = AML_ZERO_OP; /* Has no arguments! */ | 611 | opcode = AML_ZERO_OP; /* Has no arguments! */ |
612 | 612 | ||