aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/namespace/nsinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/namespace/nsinit.c')
-rw-r--r--drivers/acpi/namespace/nsinit.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/acpi/namespace/nsinit.c b/drivers/acpi/namespace/nsinit.c
index 1c9ca6e05314..aec8488c0019 100644
--- a/drivers/acpi/namespace/nsinit.c
+++ b/drivers/acpi/namespace/nsinit.c
@@ -557,10 +557,13 @@ acpi_ns_init_one_device(acpi_handle obj_handle,
557 ACPI_EXCEPTION((AE_INFO, status, "during %s._INI execution", 557 ACPI_EXCEPTION((AE_INFO, status, "during %s._INI execution",
558 scope_name)); 558 scope_name));
559 ACPI_FREE(scope_name); 559 ACPI_FREE(scope_name);
560 status = AE_OK;
561 } 560 }
562#endif 561#endif
563 562
563 /* Ignore errors from above */
564
565 status = AE_OK;
566
564 /* 567 /*
565 * The _INI method has been run if present; call the Global Initialization 568 * The _INI method has been run if present; call the Global Initialization
566 * Handler for this device. 569 * Handler for this device.