diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-24 08:41:41 -0400 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-24 13:07:53 -0400 |
| commit | 816724e65c72a90a44fbad0ef0b59b186c85fa90 (patch) | |
| tree | 421fa29aedff988e392f92780637553e275d37a0 /drivers/acpi/parser/pswalk.c | |
| parent | 70ac4385a13f78bc478f26d317511893741b05bd (diff) | |
| parent | d384ea691fe4ea8c2dd5b9b8d9042eb181776f18 (diff) | |
Merge branch 'master' of /home/trondmy/kernel/linux-2.6/
Conflicts:
fs/nfs/inode.c
fs/super.c
Fix conflicts between patch 'NFS: Split fs/nfs/inode.c' and patch
'VFS: Permit filesystem to override root dentry on mount'
Diffstat (limited to 'drivers/acpi/parser/pswalk.c')
| -rw-r--r-- | drivers/acpi/parser/pswalk.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/acpi/parser/pswalk.c b/drivers/acpi/parser/pswalk.c index 06f05bfd7612..a84a547a0f1b 100644 --- a/drivers/acpi/parser/pswalk.c +++ b/drivers/acpi/parser/pswalk.c | |||
| @@ -64,18 +64,21 @@ void acpi_ps_delete_parse_tree(union acpi_parse_object *subtree_root) | |||
| 64 | union acpi_parse_object *next = NULL; | 64 | union acpi_parse_object *next = NULL; |
| 65 | union acpi_parse_object *parent = NULL; | 65 | union acpi_parse_object *parent = NULL; |
| 66 | 66 | ||
| 67 | ACPI_FUNCTION_TRACE_PTR("ps_delete_parse_tree", subtree_root); | 67 | ACPI_FUNCTION_TRACE_PTR(ps_delete_parse_tree, subtree_root); |
| 68 | 68 | ||
| 69 | /* Visit all nodes in the subtree */ | 69 | /* Visit all nodes in the subtree */ |
| 70 | 70 | ||
| 71 | while (op) { | 71 | while (op) { |
| 72 | |||
| 72 | /* Check if we are not ascending */ | 73 | /* Check if we are not ascending */ |
| 73 | 74 | ||
| 74 | if (op != parent) { | 75 | if (op != parent) { |
| 76 | |||
| 75 | /* Look for an argument or child of the current op */ | 77 | /* Look for an argument or child of the current op */ |
| 76 | 78 | ||
| 77 | next = acpi_ps_get_arg(op, 0); | 79 | next = acpi_ps_get_arg(op, 0); |
| 78 | if (next) { | 80 | if (next) { |
| 81 | |||
| 79 | /* Still going downward in tree (Op is not completed yet) */ | 82 | /* Still going downward in tree (Op is not completed yet) */ |
| 80 | 83 | ||
| 81 | op = next; | 84 | op = next; |
