aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/dsfield.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/dsfield.c')
-rw-r--r--drivers/acpi/acpica/dsfield.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/acpi/acpica/dsfield.c b/drivers/acpi/acpica/dsfield.c
index 809843923d64..3da6fd8530c5 100644
--- a/drivers/acpi/acpica/dsfield.c
+++ b/drivers/acpi/acpica/dsfield.c
@@ -71,13 +71,13 @@ acpi_ds_get_field_names(struct acpi_create_field_info *info,
71#ifdef ACPI_ASL_COMPILER 71#ifdef ACPI_ASL_COMPILER
72/******************************************************************************* 72/*******************************************************************************
73 * 73 *
74 * FUNCTION: acpi_ds_create_external_region (i_aSL Disassembler only) 74 * FUNCTION: acpi_ds_create_external_region (iASL Disassembler only)
75 * 75 *
76 * PARAMETERS: lookup_status - Status from ns_lookup operation 76 * PARAMETERS: lookup_status - Status from ns_lookup operation
77 * Op - Op containing the Field definition and args 77 * op - Op containing the Field definition and args
78 * Path - Pathname of the region 78 * path - Pathname of the region
79 * ` walk_state - Current method state 79 * ` walk_state - Current method state
80 * Node - Where the new region node is returned 80 * node - Where the new region node is returned
81 * 81 *
82 * RETURN: Status 82 * RETURN: Status
83 * 83 *
@@ -130,7 +130,7 @@ acpi_ds_create_external_region(acpi_status lookup_status,
130 * 130 *
131 * FUNCTION: acpi_ds_create_buffer_field 131 * FUNCTION: acpi_ds_create_buffer_field
132 * 132 *
133 * PARAMETERS: Op - Current parse op (create_xXField) 133 * PARAMETERS: op - Current parse op (create_XXField)
134 * walk_state - Current state 134 * walk_state - Current state
135 * 135 *
136 * RETURN: Status 136 * RETURN: Status
@@ -167,7 +167,7 @@ acpi_ds_create_buffer_field(union acpi_parse_object *op,
167 167
168 arg = acpi_ps_get_arg(op, 3); 168 arg = acpi_ps_get_arg(op, 3);
169 } else { 169 } else {
170 /* For all other create_xXXField operators, name is the 3rd argument */ 170 /* For all other create_XXXField operators, name is the 3rd argument */
171 171
172 arg = acpi_ps_get_arg(op, 2); 172 arg = acpi_ps_get_arg(op, 2);
173 } 173 }
@@ -271,9 +271,9 @@ acpi_ds_create_buffer_field(union acpi_parse_object *op,
271 * 271 *
272 * FUNCTION: acpi_ds_get_field_names 272 * FUNCTION: acpi_ds_get_field_names
273 * 273 *
274 * PARAMETERS: Info - create_field info structure 274 * PARAMETERS: info - create_field info structure
275 * ` walk_state - Current method state 275 * ` walk_state - Current method state
276 * Arg - First parser arg for the field name list 276 * arg - First parser arg for the field name list
277 * 277 *
278 * RETURN: Status 278 * RETURN: Status
279 * 279 *
@@ -302,10 +302,10 @@ acpi_ds_get_field_names(struct acpi_create_field_info *info,
302 while (arg) { 302 while (arg) {
303 /* 303 /*
304 * Four types of field elements are handled: 304 * Four types of field elements are handled:
305 * 1) Name - Enters a new named field into the namespace 305 * 1) name - Enters a new named field into the namespace
306 * 2) Offset - specifies a bit offset 306 * 2) offset - specifies a bit offset
307 * 3) access_as - changes the access mode/attributes 307 * 3) access_as - changes the access mode/attributes
308 * 4) Connection - Associate a resource template with the field 308 * 4) connection - Associate a resource template with the field
309 */ 309 */
310 switch (arg->common.aml_opcode) { 310 switch (arg->common.aml_opcode) {
311 case AML_INT_RESERVEDFIELD_OP: 311 case AML_INT_RESERVEDFIELD_OP:
@@ -457,7 +457,7 @@ acpi_ds_get_field_names(struct acpi_create_field_info *info,
457 * 457 *
458 * FUNCTION: acpi_ds_create_field 458 * FUNCTION: acpi_ds_create_field
459 * 459 *
460 * PARAMETERS: Op - Op containing the Field definition and args 460 * PARAMETERS: op - Op containing the Field definition and args
461 * region_node - Object for the containing Operation Region 461 * region_node - Object for the containing Operation Region
462 * ` walk_state - Current method state 462 * ` walk_state - Current method state
463 * 463 *
@@ -521,7 +521,7 @@ acpi_ds_create_field(union acpi_parse_object *op,
521 * 521 *
522 * FUNCTION: acpi_ds_init_field_objects 522 * FUNCTION: acpi_ds_init_field_objects
523 * 523 *
524 * PARAMETERS: Op - Op containing the Field definition and args 524 * PARAMETERS: op - Op containing the Field definition and args
525 * ` walk_state - Current method state 525 * ` walk_state - Current method state
526 * 526 *
527 * RETURN: Status 527 * RETURN: Status
@@ -636,7 +636,7 @@ acpi_ds_init_field_objects(union acpi_parse_object *op,
636 * 636 *
637 * FUNCTION: acpi_ds_create_bank_field 637 * FUNCTION: acpi_ds_create_bank_field
638 * 638 *
639 * PARAMETERS: Op - Op containing the Field definition and args 639 * PARAMETERS: op - Op containing the Field definition and args
640 * region_node - Object for the containing Operation Region 640 * region_node - Object for the containing Operation Region
641 * walk_state - Current method state 641 * walk_state - Current method state
642 * 642 *
@@ -726,7 +726,7 @@ acpi_ds_create_bank_field(union acpi_parse_object *op,
726 * 726 *
727 * FUNCTION: acpi_ds_create_index_field 727 * FUNCTION: acpi_ds_create_index_field
728 * 728 *
729 * PARAMETERS: Op - Op containing the Field definition and args 729 * PARAMETERS: op - Op containing the Field definition and args
730 * region_node - Object for the containing Operation Region 730 * region_node - Object for the containing Operation Region
731 * ` walk_state - Current method state 731 * ` walk_state - Current method state
732 * 732 *