The patch titled ACPI: SBS: Reset alarm bit has been added to the -mm tree. Its filename is acpi-sbs-reset-alarm-bit.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: ACPI: SBS: Reset alarm bit From: Alexey Starikovskiy <astarikovskiy@xxxxxxx> Alarm bit should be cleared in order for other alarms to be sent. Reference: http://bugzilla.kernel.org/show_bug.cgi?id=9362 Signed-off-by: Alexey Starikovskiy <astarikovskiy@xxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/sbshc.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/acpi/sbshc.c~acpi-sbs-reset-alarm-bit drivers/acpi/sbshc.c --- a/drivers/acpi/sbshc.c~acpi-sbs-reset-alarm-bit +++ a/drivers/acpi/sbshc.c @@ -222,6 +222,7 @@ static int smbus_alarm(void *context) if (!status.fields.alarm) return 0; mutex_lock(&hc->lock); + status.fields.alarm = 0; smb_hc_write(hc, ACPI_SMB_STATUS, status.raw); if (hc->callback) acpi_os_execute(OSL_GPE_HANDLER, acpi_smbus_callback, hc); _ Patches currently in -mm which might be from astarikovskiy@xxxxxxx are git-acpi.patch acpi-sbs-reset-alarm-bit.patch acpi-sbs-ignore-alarms-coming-from-unknown-devices.patch acpi-sbs-return-rate-in-mw-if-capacity-in-mwh.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