From df7b7e61854c0e0da9e75b4a678f0e3b196f79ea Mon Sep 17 00:00:00 2001 From: juhosg Date: Mon, 4 Feb 2013 15:23:08 +0000 Subject: leon: R.I.P. It is broken since ~9 months and nobody takes care of that. Signed-off-by: Gabor Juhos git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35488 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../008-hz_specific_timer_init.patch | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 target/linux/leon/patches-2.6.36/008-hz_specific_timer_init.patch (limited to 'target/linux/leon/patches-2.6.36/008-hz_specific_timer_init.patch') diff --git a/target/linux/leon/patches-2.6.36/008-hz_specific_timer_init.patch b/target/linux/leon/patches-2.6.36/008-hz_specific_timer_init.patch deleted file mode 100644 index aae3d29cd..000000000 --- a/target/linux/leon/patches-2.6.36/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