diff options
Diffstat (limited to 'drivers/acpi/dispatcher/dsinit.c')
-rw-r--r-- | drivers/acpi/dispatcher/dsinit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/dispatcher/dsinit.c b/drivers/acpi/dispatcher/dsinit.c index d7790db50178..ebc07aab710c 100644 --- a/drivers/acpi/dispatcher/dsinit.c +++ b/drivers/acpi/dispatcher/dsinit.c | |||
@@ -99,7 +99,7 @@ acpi_ds_init_one_object ( | |||
99 | * was just loaded | 99 | * was just loaded |
100 | */ | 100 | */ |
101 | if (((struct acpi_namespace_node *) obj_handle)->owner_id != | 101 | if (((struct acpi_namespace_node *) obj_handle)->owner_id != |
102 | info->table_desc->table_id) { | 102 | info->table_desc->owner_id) { |
103 | return (AE_OK); | 103 | return (AE_OK); |
104 | } | 104 | } |
105 | 105 | ||
@@ -168,7 +168,7 @@ acpi_ds_init_one_object ( | |||
168 | */ | 168 | */ |
169 | acpi_ns_delete_namespace_subtree (obj_handle); | 169 | acpi_ns_delete_namespace_subtree (obj_handle); |
170 | acpi_ns_delete_namespace_by_owner ( | 170 | acpi_ns_delete_namespace_by_owner ( |
171 | ((struct acpi_namespace_node *) obj_handle)->object->method.owning_id); | 171 | ((struct acpi_namespace_node *) obj_handle)->object->method.owner_id); |
172 | break; | 172 | break; |
173 | 173 | ||
174 | 174 | ||
@@ -237,7 +237,7 @@ acpi_ds_initialize_objects ( | |||
237 | 237 | ||
238 | ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, | 238 | ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, |
239 | "\nTable [%4.4s](id %4.4X) - %hd Objects with %hd Devices %hd Methods %hd Regions\n", | 239 | "\nTable [%4.4s](id %4.4X) - %hd Objects with %hd Devices %hd Methods %hd Regions\n", |
240 | table_desc->pointer->signature, table_desc->table_id, info.object_count, | 240 | table_desc->pointer->signature, table_desc->owner_id, info.object_count, |
241 | info.device_count, info.method_count, info.op_region_count)); | 241 | info.device_count, info.method_count, info.op_region_count)); |
242 | 242 | ||
243 | ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, | 243 | ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, |