diff options
-rw-r--r-- | drivers/acpi/acpica/nsaccess.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/nsaccess.c b/drivers/acpi/acpica/nsaccess.c index fc168e62c1c9..d70eaf39dfdf 100644 --- a/drivers/acpi/acpica/nsaccess.c +++ b/drivers/acpi/acpica/nsaccess.c | |||
@@ -110,11 +110,11 @@ acpi_status acpi_ns_root_initialize(void) | |||
110 | status = acpi_ns_lookup(NULL, init_val->name, init_val->type, | 110 | status = acpi_ns_lookup(NULL, init_val->name, init_val->type, |
111 | ACPI_IMODE_LOAD_PASS2, | 111 | ACPI_IMODE_LOAD_PASS2, |
112 | ACPI_NS_NO_UPSEARCH, NULL, &new_node); | 112 | ACPI_NS_NO_UPSEARCH, NULL, &new_node); |
113 | 113 | if (ACPI_FAILURE(status)) { | |
114 | if (ACPI_FAILURE(status) || (!new_node)) { /* Must be on same line for code converter */ | ||
115 | ACPI_EXCEPTION((AE_INFO, status, | 114 | ACPI_EXCEPTION((AE_INFO, status, |
116 | "Could not create predefined name %s", | 115 | "Could not create predefined name %s", |
117 | init_val->name)); | 116 | init_val->name)); |
117 | continue; | ||
118 | } | 118 | } |
119 | 119 | ||
120 | /* | 120 | /* |