]> Pileus Git - ~andy/linux/commitdiff
ACPI: run _OSC after ACPI_FULL_INITIALIZATION
authorLin Ming <ming.m.lin@intel.com>
Mon, 16 Jul 2012 08:30:21 +0000 (16:30 +0800)
committerLen Brown <len.brown@intel.com>
Tue, 25 Sep 2012 04:15:07 +0000 (00:15 -0400)
The _OSC method may exist in module level code,
so it must be called after ACPI_FULL_INITIALIZATION

On some new platforms with Zero-Power-Optical-Disk-Drive (ZPODD)
support, this fix is necessary to save power.

Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Tested-by: Aaron Lu <aaron.lu@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Cc: stable@vger.kernel.org
drivers/acpi/bus.c

index e0596954290b8e33e20791effc0227b80fb4a0c9..d59175efc428e58c8602b3c91730bf5cb99764d6 100644 (file)
@@ -994,14 +994,18 @@ static int __init acpi_bus_init(void)
        status = acpi_ec_ecdt_probe();
        /* Ignore result. Not having an ECDT is not fatal. */
 
-       acpi_bus_osc_support();
-
        status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
        if (ACPI_FAILURE(status)) {
                printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
                goto error1;
        }
 
+       /*
+        * _OSC method may exist in module level code,
+        * so it must be run after ACPI_FULL_INITIALIZATION
+        */
+       acpi_bus_osc_support();
+
        /*
         * _PDC control method may load dynamic SSDT tables,
         * and we need to install the table handler before that.