diff options
Diffstat (limited to 'drivers/acpi/system.c')
-rw-r--r-- | drivers/acpi/system.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c index 391d0358a592..3b88981dd215 100644 --- a/drivers/acpi/system.c +++ b/drivers/acpi/system.c | |||
@@ -571,12 +571,9 @@ static int acpi_system_procfs_init(void) | |||
571 | } | 571 | } |
572 | #endif | 572 | #endif |
573 | 573 | ||
574 | static int __init acpi_system_init(void) | 574 | int __init acpi_system_init(void) |
575 | { | 575 | { |
576 | int result = 0; | 576 | int result; |
577 | |||
578 | if (acpi_disabled) | ||
579 | return 0; | ||
580 | 577 | ||
581 | result = acpi_system_procfs_init(); | 578 | result = acpi_system_procfs_init(); |
582 | if (result) | 579 | if (result) |
@@ -586,5 +583,3 @@ static int __init acpi_system_init(void) | |||
586 | 583 | ||
587 | return result; | 584 | return result; |
588 | } | 585 | } |
589 | |||
590 | subsys_initcall(acpi_system_init); | ||