summaryrefslogtreecommitdiff
path: root/drivers/acpi/device_pm.c
diff options
context:
space:
mode:
authorAaron Lu <aaron.lu@intel.com>2013-07-31 14:07:15 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-07-31 14:07:15 +0200
commit7b4e0c4ac1809eab6fcfe6818ec8b70be79b41bc (patch)
tree98246d9961d3f9bb045b25a6b86ddf97a9417a2c /drivers/acpi/device_pm.c
parent8ad928d52e63a9b7d69f0873d7318c4561e2f8cd (diff)
ACPI / PM: Remove redundant power manageable check from acpi_bus_set_power()
Now that acpi_device_set_power() checks whether or not the given device is power manageable, it is not necessary to do this check in acpi_bus_set_power() any more, so remove it. Signed-off-by: Aaron Lu <aaron.lu@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/device_pm.c')
-rw-r--r--drivers/acpi/device_pm.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c
index 8234e1f8c79d..beb9625e8458 100644
--- a/drivers/acpi/device_pm.c
+++ b/drivers/acpi/device_pm.c
@@ -243,13 +243,6 @@ int acpi_bus_set_power(acpi_handle handle, int state)
if (result)
return result;
- if (!device->flags.power_manageable) {
- ACPI_DEBUG_PRINT((ACPI_DB_INFO,
- "Device [%s] is not power manageable\n",
- dev_name(&device->dev)));
- return -ENODEV;
- }
-
return acpi_device_set_power(device, state);
}
EXPORT_SYMBOL(acpi_bus_set_power);