The patch titled Subject: drivers-rtc-rtc-pxac-fix-set-time-sync-time-issue-fix has been added to the -mm tree. Its filename is drivers-rtc-rtc-pxac-fix-set-time-sync-time-issue-fix.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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Olof Johansson <olof@xxxxxxxxx> Subject: drivers-rtc-rtc-pxac-fix-set-time-sync-time-issue-fix The "fix set time sync time issue" adds calls to udelay(), but doesn't add the include file. End result is build breakage: drivers/rtc/rtc-pxa.c: In function 'pxa_rtc_set_time': drivers/rtc/rtc-pxa.c:267:2: error: implicit declaration of function 'udelay' [-Werror=implicit-function-declaration] Signed-off-by: Olof Johansson <olof@xxxxxxxxx> Cc: Leo Song <liangs@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-pxa.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/rtc/rtc-pxa.c~drivers-rtc-rtc-pxac-fix-set-time-sync-time-issue-fix drivers/rtc/rtc-pxa.c --- a/drivers/rtc/rtc-pxa.c~drivers-rtc-rtc-pxac-fix-set-time-sync-time-issue-fix +++ a/drivers/rtc/rtc-pxa.c @@ -19,6 +19,7 @@ * */ +#include <linux/delay.h> #include <linux/init.h> #include <linux/platform_device.h> #include <linux/module.h> _ Patches currently in -mm which might be from olof@xxxxxxxxx are origin.patch linux-next.patch drivers-rtc-rtc-pxac-fix-set-time-sync-time-issue-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