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/dispatcher/dswscope.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/dispatcher/dswscope.c')
| -rw-r--r-- | drivers/acpi/dispatcher/dswscope.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/acpi/dispatcher/dswscope.c b/drivers/acpi/dispatcher/dswscope.c index ada21ef4a174..c9228972f5f6 100644 --- a/drivers/acpi/dispatcher/dswscope.c +++ b/drivers/acpi/dispatcher/dswscope.c | |||
| @@ -63,9 +63,10 @@ void acpi_ds_scope_stack_clear(struct acpi_walk_state *walk_state) | |||
| 63 | { | 63 | { |
| 64 | union acpi_generic_state *scope_info; | 64 | union acpi_generic_state *scope_info; |
| 65 | 65 | ||
| 66 | ACPI_FUNCTION_NAME("ds_scope_stack_clear"); | 66 | ACPI_FUNCTION_NAME(ds_scope_stack_clear); |
| 67 | 67 | ||
| 68 | while (walk_state->scope_info) { | 68 | while (walk_state->scope_info) { |
| 69 | |||
| 69 | /* Pop a scope off the stack */ | 70 | /* Pop a scope off the stack */ |
| 70 | 71 | ||
| 71 | scope_info = walk_state->scope_info; | 72 | scope_info = walk_state->scope_info; |
| @@ -102,9 +103,10 @@ acpi_ds_scope_stack_push(struct acpi_namespace_node *node, | |||
| 102 | union acpi_generic_state *scope_info; | 103 | union acpi_generic_state *scope_info; |
| 103 | union acpi_generic_state *old_scope_info; | 104 | union acpi_generic_state *old_scope_info; |
| 104 | 105 | ||
| 105 | ACPI_FUNCTION_TRACE("ds_scope_stack_push"); | 106 | ACPI_FUNCTION_TRACE(ds_scope_stack_push); |
| 106 | 107 | ||
| 107 | if (!node) { | 108 | if (!node) { |
| 109 | |||
| 108 | /* Invalid scope */ | 110 | /* Invalid scope */ |
| 109 | 111 | ||
| 110 | ACPI_ERROR((AE_INFO, "Null scope parameter")); | 112 | ACPI_ERROR((AE_INFO, "Null scope parameter")); |
| @@ -126,7 +128,7 @@ acpi_ds_scope_stack_push(struct acpi_namespace_node *node, | |||
| 126 | 128 | ||
| 127 | /* Init new scope object */ | 129 | /* Init new scope object */ |
| 128 | 130 | ||
| 129 | scope_info->common.data_type = ACPI_DESC_TYPE_STATE_WSCOPE; | 131 | scope_info->common.descriptor_type = ACPI_DESC_TYPE_STATE_WSCOPE; |
| 130 | scope_info->scope.node = node; | 132 | scope_info->scope.node = node; |
| 131 | scope_info->common.value = (u16) type; | 133 | scope_info->common.value = (u16) type; |
| 132 | 134 | ||
| @@ -176,7 +178,7 @@ acpi_status acpi_ds_scope_stack_pop(struct acpi_walk_state *walk_state) | |||
| 176 | union acpi_generic_state *scope_info; | 178 | union acpi_generic_state *scope_info; |
| 177 | union acpi_generic_state *new_scope_info; | 179 | union acpi_generic_state *new_scope_info; |
| 178 | 180 | ||
| 179 | ACPI_FUNCTION_TRACE("ds_scope_stack_pop"); | 181 | ACPI_FUNCTION_TRACE(ds_scope_stack_pop); |
| 180 | 182 | ||
| 181 | /* | 183 | /* |
| 182 | * Pop scope info object off the stack. | 184 | * Pop scope info object off the stack. |
