The patch titled ACPI: suspend: consolidate handling of Sx states addendum has been removed from the -mm tree. Its filename was acpi-suspend-consolidate-handling-of-sx-states-addendum.patch This patch was dropped because cpuidle got dropped from git-acpi ------------------------------------------------------ Subject: ACPI: suspend: consolidate handling of Sx states addendum From: Frans Pop <elendil@xxxxxxxxx> Make the S0 state be always reported as supported Signed-off-by: Frans Pop <elendil@xxxxxxxxx> Signed-off-by: Rafael J. Wysocki <rjw@xxxxxxx> Cc: Alexey Starikovskiy <astarikovskiy@xxxxxxx> Acked-by: "Rafael J. Wysocki" <rjw@xxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/sleep/main.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff -puN drivers/acpi/sleep/main.c~acpi-suspend-consolidate-handling-of-sx-states-addendum drivers/acpi/sleep/main.c --- a/drivers/acpi/sleep/main.c~acpi-suspend-consolidate-handling-of-sx-states-addendum +++ a/drivers/acpi/sleep/main.c @@ -406,9 +406,11 @@ int __init acpi_sleep_init(void) if (acpi_disabled) return 0; -printk(KERN_INFO PREFIX "(supports"); + sleep_states[ACPI_STATE_S0] = 1; + printk(KERN_INFO PREFIX "(supports S0"); + #ifdef CONFIG_SUSPEND - for (i = ACPI_STATE_S0; i < ACPI_STATE_S4; i++) { + for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) { status = acpi_get_sleep_type_data(i, &type_a, &type_b); if (ACPI_SUCCESS(status)) { sleep_states[i] = 1; _ Patches currently in -mm which might be from elendil@xxxxxxxxx are origin.patch acpi-suspend-consolidate-handling-of-sx-states-addendum.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html