diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-14 15:52:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-14 15:52:42 +0000 |
commit | 16defbb2bd9478f9e5384b9722f20a694e6bae41 (patch) | |
tree | f52e202c30c7fca103b196ece1223e18446e4dfc /target/linux/s3c24xx/patches-2.6.26/1004-resume-timers-wq.patch.patch | |
parent | b4644aedce6526b5d07b336187c8e6417c7dd75e (diff) | |
download | upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.tar.gz upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.tar.bz2 upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.zip |
nuke obsolete kernel stuff
SVN-Revision: 14875
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.26/1004-resume-timers-wq.patch.patch')
-rwxr-xr-x | target/linux/s3c24xx/patches-2.6.26/1004-resume-timers-wq.patch.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.26/1004-resume-timers-wq.patch.patch b/target/linux/s3c24xx/patches-2.6.26/1004-resume-timers-wq.patch.patch deleted file mode 100755 index a67a5fea4f..0000000000 --- a/target/linux/s3c24xx/patches-2.6.26/1004-resume-timers-wq.patch.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 62bc0d984e5c2778e09094ba2e4d885903c6c35b Mon Sep 17 00:00:00 2001 -From: mokopatches <mokopatches@openmoko.org> -Date: Wed, 16 Jul 2008 14:44:10 +0100 -Subject: [PATCH] resume-timers-wq.patch - The initialization of clocks uses mutexes, but we execute the resume in - an interrupt context. We therefore have to hand this task to a non-interrupt. - -Adapted from a patch by Andy Green. ---- - arch/arm/plat-s3c24xx/time.c | 18 +++++++++++++++++- - 1 files changed, 17 insertions(+), 1 deletions(-) - -diff --git a/arch/arm/plat-s3c24xx/time.c b/arch/arm/plat-s3c24xx/time.c -index 766473b..f8d307b 100644 ---- a/arch/arm/plat-s3c24xx/time.c -+++ b/arch/arm/plat-s3c24xx/time.c -@@ -253,8 +253,24 @@ static void __init s3c2410_timer_init (void) - setup_irq(IRQ_TIMER4, &s3c2410_timer_irq); - } - -+static void s3c2410_timer_resume_work(struct work_struct *work) -+{ -+ s3c2410_timer_setup(); -+} -+ -+static void s3c2410_timer_resume(void) -+{ -+ static DECLARE_WORK(work, s3c2410_timer_resume_work); -+ int res; -+ -+ res = schedule_work(&work); -+ if (!res) -+ printk(KERN_ERR -+ "s3c2410_timer_resume_work already queued ???\n"); -+} -+ - struct sys_timer s3c24xx_timer = { - .init = s3c2410_timer_init, - .offset = s3c2410_gettimeoffset, -- .resume = s3c2410_timer_setup -+ .resume = s3c2410_timer_resume, - }; --- -1.5.6.3 - |