From 46ae83b7e43756f5e8160b43001c2fb2c7344644 Mon Sep 17 00:00:00 2001 From: Olof Johansson Date: Wed, 20 Mar 2013 15:08:10 +1100 Subject: [PATCH] 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 Cc: Leo Song Signed-off-by: Andrew Morton --- drivers/rtc/rtc-pxa.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/rtc/rtc-pxa.c b/drivers/rtc/rtc-pxa.c index f5d9b342d3cd..72e13dafa901 100644 --- a/drivers/rtc/rtc-pxa.c +++ b/drivers/rtc/rtc-pxa.c @@ -19,6 +19,7 @@ * */ +#include #include #include #include -- 2.39.5