The patch titled git-acpi: correct id for fixed buttons has been added to the -mm tree. Its filename is git-acpi-correct-id-for-fixed-buttons.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: git-acpi: correct id for fixed buttons From: Alexey Starikovskiy <alexey.y.starikovskiy@xxxxxxxxxxxxxxx> ACPI_BUTTON_HID_POWERF was changed, but this change was not propogated to button.c, thus breaking detection of fixed power and sleep buttons. Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/acpi/button.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/acpi/button.c~git-acpi-correct-id-for-fixed-buttons drivers/acpi/button.c --- a/drivers/acpi/button.c~git-acpi-correct-id-for-fixed-buttons +++ a/drivers/acpi/button.c @@ -75,7 +75,7 @@ static int acpi_button_state_open_fs(str static struct acpi_driver acpi_button_driver = { .name = ACPI_BUTTON_DRIVER_NAME, .class = ACPI_BUTTON_CLASS, - .ids = "ACPI_FPB,ACPI_FSB,PNP0C0D,PNP0C0C,PNP0C0E", + .ids = "button_power,button_sleep,PNP0C0D,PNP0C0C,PNP0C0E", .ops = { .add = acpi_button_add, .remove = acpi_button_remove, _ Patches currently in -mm which might be from alexey.y.starikovskiy@xxxxxxxxxxxxxxx are git-acpi.patch git-acpi-correct-id-for-fixed-buttons.patch swsusp-change-code-order-in-diskc-fix.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