diff options
Diffstat (limited to 'drivers/acpi/namespace/nswalk.c')
| -rw-r--r-- | drivers/acpi/namespace/nswalk.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/acpi/namespace/nswalk.c b/drivers/acpi/namespace/nswalk.c index fcab1e784b81..c8f6bef16ed0 100644 --- a/drivers/acpi/namespace/nswalk.c +++ b/drivers/acpi/namespace/nswalk.c | |||
| @@ -76,6 +76,7 @@ struct acpi_namespace_node *acpi_ns_get_next_node(acpi_object_type type, | |||
| 76 | ACPI_FUNCTION_ENTRY(); | 76 | ACPI_FUNCTION_ENTRY(); |
| 77 | 77 | ||
| 78 | if (!child_node) { | 78 | if (!child_node) { |
| 79 | |||
| 79 | /* It's really the parent's _scope_ that we want */ | 80 | /* It's really the parent's _scope_ that we want */ |
| 80 | 81 | ||
| 81 | if (parent_node->child) { | 82 | if (parent_node->child) { |
| @@ -92,6 +93,7 @@ struct acpi_namespace_node *acpi_ns_get_next_node(acpi_object_type type, | |||
| 92 | /* If any type is OK, we are done */ | 93 | /* If any type is OK, we are done */ |
| 93 | 94 | ||
| 94 | if (type == ACPI_TYPE_ANY) { | 95 | if (type == ACPI_TYPE_ANY) { |
| 96 | |||
| 95 | /* next_node is NULL if we are at the end-of-list */ | 97 | /* next_node is NULL if we are at the end-of-list */ |
| 96 | 98 | ||
| 97 | return (next_node); | 99 | return (next_node); |
| @@ -100,6 +102,7 @@ struct acpi_namespace_node *acpi_ns_get_next_node(acpi_object_type type, | |||
| 100 | /* Must search for the node -- but within this scope only */ | 102 | /* Must search for the node -- but within this scope only */ |
| 101 | 103 | ||
| 102 | while (next_node) { | 104 | while (next_node) { |
| 105 | |||
| 103 | /* If type matches, we are done */ | 106 | /* If type matches, we are done */ |
| 104 | 107 | ||
| 105 | if (next_node->type == type) { | 108 | if (next_node->type == type) { |
| @@ -161,7 +164,7 @@ acpi_ns_walk_namespace(acpi_object_type type, | |||
| 161 | acpi_object_type child_type; | 164 | acpi_object_type child_type; |
| 162 | u32 level; | 165 | u32 level; |
| 163 | 166 | ||
| 164 | ACPI_FUNCTION_TRACE("ns_walk_namespace"); | 167 | ACPI_FUNCTION_TRACE(ns_walk_namespace); |
| 165 | 168 | ||
| 166 | /* Special case for the namespace Root Node */ | 169 | /* Special case for the namespace Root Node */ |
| 167 | 170 | ||
| @@ -182,6 +185,7 @@ acpi_ns_walk_namespace(acpi_object_type type, | |||
| 182 | * bubbled up to (and passed) the original parent handle (start_entry) | 185 | * bubbled up to (and passed) the original parent handle (start_entry) |
| 183 | */ | 186 | */ |
| 184 | while (level > 0) { | 187 | while (level > 0) { |
| 188 | |||
| 185 | /* Get the next node in this scope. Null if not found */ | 189 | /* Get the next node in this scope. Null if not found */ |
| 186 | 190 | ||
| 187 | status = AE_OK; | 191 | status = AE_OK; |
