diff options
author | Claudio Mignanti <c.mignanti@gmail.com> | 2010-02-07 12:36:01 +0000 |
---|---|---|
committer | Claudio Mignanti <c.mignanti@gmail.com> | 2010-02-07 12:36:01 +0000 |
commit | de6a07bdb80119866286202d66e872e1f414328b (patch) | |
tree | 271fcdc411c883376d480f774fba0b5067e4a55d /target/linux | |
parent | ce2133682d245fc1dd0ba340f28274d8a470603e (diff) | |
download | upstream-de6a07bdb80119866286202d66e872e1f414328b.tar.gz upstream-de6a07bdb80119866286202d66e872e1f414328b.tar.bz2 upstream-de6a07bdb80119866286202d66e872e1f414328b.zip |
kernel: fix compilation for platforms without GENERIC_TIME
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19542 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.32/850-if_no_generic_time.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.32/850-if_no_generic_time.patch b/target/linux/generic-2.6/patches-2.6.32/850-if_no_generic_time.patch new file mode 100644 index 0000000000..752b03ba23 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.32/850-if_no_generic_time.patch @@ -0,0 +1,25 @@ +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 + |