aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/pstree.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/pstree.c')
-rw-r--r--drivers/acpi/acpica/pstree.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/acpi/acpica/pstree.c b/drivers/acpi/acpica/pstree.c
index 2b03cdbbe1c0..fdb2e71f3046 100644
--- a/drivers/acpi/acpica/pstree.c
+++ b/drivers/acpi/acpica/pstree.c
@@ -58,8 +58,8 @@ union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op);
58 * 58 *
59 * FUNCTION: acpi_ps_get_arg 59 * FUNCTION: acpi_ps_get_arg
60 * 60 *
61 * PARAMETERS: Op - Get an argument for this op 61 * PARAMETERS: op - Get an argument for this op
62 * Argn - Nth argument to get 62 * argn - Nth argument to get
63 * 63 *
64 * RETURN: The argument (as an Op object). NULL if argument does not exist 64 * RETURN: The argument (as an Op object). NULL if argument does not exist
65 * 65 *
@@ -114,8 +114,8 @@ union acpi_parse_object *acpi_ps_get_arg(union acpi_parse_object *op, u32 argn)
114 * 114 *
115 * FUNCTION: acpi_ps_append_arg 115 * FUNCTION: acpi_ps_append_arg
116 * 116 *
117 * PARAMETERS: Op - Append an argument to this Op. 117 * PARAMETERS: op - Append an argument to this Op.
118 * Arg - Argument Op to append 118 * arg - Argument Op to append
119 * 119 *
120 * RETURN: None. 120 * RETURN: None.
121 * 121 *
@@ -188,8 +188,8 @@ acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg)
188 * 188 *
189 * FUNCTION: acpi_ps_get_depth_next 189 * FUNCTION: acpi_ps_get_depth_next
190 * 190 *
191 * PARAMETERS: Origin - Root of subtree to search 191 * PARAMETERS: origin - Root of subtree to search
192 * Op - Last (previous) Op that was found 192 * op - Last (previous) Op that was found
193 * 193 *
194 * RETURN: Next Op found in the search. 194 * RETURN: Next Op found in the search.
195 * 195 *
@@ -261,7 +261,7 @@ union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin,
261 * 261 *
262 * FUNCTION: acpi_ps_get_child 262 * FUNCTION: acpi_ps_get_child
263 * 263 *
264 * PARAMETERS: Op - Get the child of this Op 264 * PARAMETERS: op - Get the child of this Op
265 * 265 *
266 * RETURN: Child Op, Null if none is found. 266 * RETURN: Child Op, Null if none is found.
267 * 267 *