diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2010-11-25 00:10:02 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2011-01-12 04:48:45 -0500 |
commit | 97d9a9e9f5ee68f20005ca5aa77c6b684e7cace8 (patch) | |
tree | 37961b9dd711862f0b181bb6890f47fba3f58345 /drivers/acpi/bus.c | |
parent | 25eed40720fc9005c63a1f436e5f8a78836c26ff (diff) | |
download | linux-3.10-97d9a9e9f5ee68f20005ca5aa77c6b684e7cace8.tar.gz linux-3.10-97d9a9e9f5ee68f20005ca5aa77c6b684e7cace8.tar.bz2 linux-3.10-97d9a9e9f5ee68f20005ca5aa77c6b684e7cace8.zip |
ACPI / PM: Register acpi_power_driver early
The ACPI device driver used for handling power resources,
acpi_power_driver, creates a struct acpi_power_resource object for
each ACPI device representing a power resource. These objects are
then used when setting and reading the power states of devices using
the corresponding power resources. Unfortunately, acpi_power_driver
is registered after acpi_scan_init() that may add devices using the
power resources before acpi_power_driver has a chance to create
struct acpi_power_resource objects for them (specifically, the power
resources may be referred to during the scanning process through
acpi_bus_get_power() before they have been initialized).
As the first step towards fixing this issue, move the registration
of acpi_power_driver into acpi_scan_init() so that power resource
devices can be initialized by it as soon as they have been found in
the namespace.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/bus.c')
-rw-r--r-- | drivers/acpi/bus.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 19decee72e9..47864013c0d 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -1099,7 +1099,6 @@ static int __init acpi_init(void) acpi_scan_init(); acpi_ec_init(); - acpi_power_init(); acpi_debugfs_init(); acpi_sleep_proc_init(); acpi_wakeup_device_init(); |