summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-12 09:39:51 +0000
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-12 09:39:51 +0000
commit825dd1f572bbac2d364f2522988bab6489f1a3b4 (patch)
tree8f6a8b204f55aad7f21b930e5d5a4338f29572dd /target
parentef34750d84e32dd7fea46134ce353e4a73993229 (diff)
remove 850-if_no_generic_time.patch -- breaks compilation and 2.6.32.8 already includes a fix for this..
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19598 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/generic-2.6/patches-2.6.32/850-if_no_generic_time.patch22
1 files changed, 0 insertions, 22 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
deleted file mode 100644
index 69370d065..000000000
--- a/target/linux/generic-2.6/patches-2.6.32/850-if_no_generic_time.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-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(-)
-
---- 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