diff options
Diffstat (limited to 'drivers/acpi/dispatcher/dsmethod.c')
-rw-r--r-- | drivers/acpi/dispatcher/dsmethod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/dispatcher/dsmethod.c b/drivers/acpi/dispatcher/dsmethod.c index 238916ce5412..7dc59fc7344f 100644 --- a/drivers/acpi/dispatcher/dsmethod.c +++ b/drivers/acpi/dispatcher/dsmethod.c | |||
@@ -502,7 +502,7 @@ void acpi_ds_terminate_control_method(struct acpi_walk_state *walk_state) | |||
502 | * Delete any namespace entries created immediately underneath | 502 | * Delete any namespace entries created immediately underneath |
503 | * the method | 503 | * the method |
504 | */ | 504 | */ |
505 | if (method_node->child) { | 505 | if (method_node && method_node->child) { |
506 | acpi_ns_delete_namespace_subtree(method_node); | 506 | acpi_ns_delete_namespace_subtree(method_node); |
507 | } | 507 | } |
508 | 508 | ||