From 763c067152ac8f8acc6a4920bd335254435feb2b Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 16 Nov 2012 16:32:55 +0000 Subject: [leon] move patches to patches-2.6.36 Signed-off-by: Florian Fainelli git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34220 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../leon/patches/008-hz_specific_timer_init.patch | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 target/linux/leon/patches/008-hz_specific_timer_init.patch (limited to 'target/linux/leon/patches/008-hz_specific_timer_init.patch') diff --git a/target/linux/leon/patches/008-hz_specific_timer_init.patch b/target/linux/leon/patches/008-hz_specific_timer_init.patch deleted file mode 100644 index aae3d29cd..000000000 --- a/target/linux/leon/patches/008-hz_specific_timer_init.patch +++ /dev/null @@ -1,30 +0,0 @@ -From e4d697dad4d43109f045a4f25cb1d706122045c0 Mon Sep 17 00:00:00 2001 -From: Daniel Hellstrom -Date: Wed, 22 Sep 2010 13:24:36 +0200 -Subject: [PATCH] SPARC/LEON: removed constant timer initialization as if HZ=100, now it reflects the value of HZ - -Signed-off-by: Daniel Hellstrom ---- - arch/sparc/kernel/leon_kernel.c | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - ---- a/arch/sparc/kernel/leon_kernel.c -+++ b/arch/sparc/kernel/leon_kernel.c -@@ -149,7 +149,7 @@ void __init leon_init_timers(irq_handler - if (leon3_gptimer_regs && leon3_irqctrl_regs && leon3_gptimer_irq) { - LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx].val, 0); - LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx].rld, -- (((1000000 / 100) - 1))); -+ (((1000000 / HZ) - 1))); - LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx].ctrl, 0); - - #ifdef CONFIG_SMP -@@ -163,7 +163,7 @@ void __init leon_init_timers(irq_handler - } - - LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx+1].val, 0); -- LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx+1].rld, (((1000000/100) - 1))); -+ LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx+1].rld, (((1000000 / HZ) - 1))); - LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx+1].ctrl, 0); - # endif - -- cgit v1.2.3