mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 18:11:06 +02:00
0eaf78eb55
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19542 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
637 B
Diff
26 lines
637 B
Diff
Provide a dummy implementation of clocksource_max_deferment() for such
|
|
platforms.
|
|
|
|
Signed-off-by: Aaro Koskinen <aaro.koskinen <at> iki.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
|
|
|