From: Aaron Lu Date: Wed, 31 Jul 2013 12:07:15 +0000 (+0200) Subject: ACPI / PM: Remove redundant power manageable check from acpi_bus_set_power() X-Git-Tag: v3.12-rc1~178^2~15^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b4e0c4ac1809eab6fcfe6818ec8b70be79b41bc;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c index 8234e1f8c79d4..beb9625e8458d 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);