diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-07-17 22:54:09 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-07-17 22:54:09 +0200 |
commit | 1dcc3d3362b0c97e48290f7786be85b4cec2a147 (patch) | |
tree | dc08551dbbd75579eda0807529bbbb829b193155 /drivers/acpi/scan.c | |
parent | ACPI / scan: Move bus operations and notification routines to bus.c (diff) | |
download | linux-1dcc3d3362b0c97e48290f7786be85b4cec2a147.tar.xz linux-1dcc3d3362b0c97e48290f7786be85b4cec2a147.zip |
ACPI / bus: Move ACPI bus type registration
Move the registration of the ACPI bus type to acpi_bus_init() and
avoid using ACPI going forward if it fails (too many things depend on
the presence of the ACPI bus type).
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r-- | drivers/acpi/scan.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index f541f689ae80..2fe5a37c385c 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -1891,12 +1891,6 @@ int __init acpi_scan_init(void) { int result; - result = bus_register(&acpi_bus_type); - if (result) { - /* We don't want to quit even if we failed to add suspend/resume */ - printk(KERN_ERR PREFIX "Could not register bus type\n"); - } - acpi_pci_root_init(); acpi_pci_link_init(); acpi_processor_init(); |