[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1264866973-9474-1-git-send-email-aaro.koskinen@iki.fi>
Date: Sat, 30 Jan 2010 17:56:13 +0200
From: Aaro Koskinen <aaro.koskinen@....fi>
To: gregkh@...e.de, tglx@...utronix.de, stable@...nel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH -stable 2.6.32.7] clocksource: fix compilation if no GENERIC_TIME
Commit a9238ce3bb0fda6e760780b702c6cbd3793087d3 broke compilation on
platforms that do not implement GENERIC_TIME (e.g. iop32x):
kernel/time/clocksource.c: In function 'clocksource_register':
kernel/time/clocksource.c:556: error: implicit declaration of function 'clocksource_max_deferment'
Provide a dummy implementation of clocksource_max_deferment() for such
platforms.
Signed-off-by: Aaro Koskinen <aaro.koskinen@....fi>
---
kernel/time/clocksource.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 5155dc3..7b3a9d0 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -502,6 +502,11 @@ static void clocksource_select(void)
#else /* CONFIG_GENERIC_TIME */
+static inline u64 clocksource_max_deferment(struct clocksource *cs)
+{
+ return 0;
+}
+
static inline void clocksource_select(void) { }
#endif
--
1.5.6.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists