The patch titled rtc: fix compile failure in drivers/char/rtc.c has been added to the -mm tree. Its filename is rtc-fix-compile-failure-in-drivers-char-rtcc.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: rtc: fix compile failure in drivers/char/rtc.c From: Xiaotian Feng <dfeng@xxxxxxxxxx> commit d43c36d ("headers: remove sched.h from interrupt.h") removed sched.h from interrupt.h, this causes compile failure in drivers/char/rtc.c. Reported-by: Pete Clements <clem@xxxxxxxxxxxxxxxxxxxxx> Signed-of-by: Xiaotian Feng <xtfeng@xxxxxxxxx> Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN drivers/char/rtc.c~rtc-fix-compile-failure-in-drivers-char-rtcc drivers/char/rtc.c --- a/drivers/char/rtc.c~rtc-fix-compile-failure-in-drivers-char-rtcc +++ a/drivers/char/rtc.c @@ -62,6 +62,7 @@ */ #include <linux/interrupt.h> +#include <linux/sched.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/types.h> _ Patches currently in -mm which might be from dfeng@xxxxxxxxxx are rtc-fix-compile-failure-in-drivers-char-rtcc.patch linux-next.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