ACPI_STATE_D3 means ACPI D3hot state which should only be returned when power resources listed in _PR3 are 'on'. Return ACPI D3cold state if no other state is known. Signed-off-by: Lin Ming <ming.m.lin@xxxxxxxxx> --- drivers/acpi/power.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/acpi/power.c b/drivers/acpi/power.c index 7049a7d..27a2bad 100644 --- a/drivers/acpi/power.c +++ b/drivers/acpi/power.c @@ -646,7 +646,7 @@ int acpi_power_get_inferred_state(struct acpi_device *device, int *state) } } - *state = ACPI_STATE_D3; + *state = ACPI_STATE_D3_COLD; return 0; } -- 1.7.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html