1 From 42ecc15386869684cf29881a3a6941bafaa3bf69 Mon Sep 17 00:00:00 2001
2 From: Axel Gembe <ago@bastart.eu.org>
3 Date: Wed, 14 May 2008 00:25:28 +0200
4 Subject: [PATCH] bcm963xx: remove obsolete timer code
6 This removes some code that has been deprecated in kernels >= 2.6.24.
8 Signed-off-by: Axel Gembe <ago@bastart.eu.org>
10 arch/mips/bcm963xx/setup.c | 2 --
11 arch/mips/bcm963xx/time.c | 29 -----------------------------
12 2 files changed, 0 insertions(+), 31 deletions(-)
14 --- a/arch/mips/bcm963xx/setup.c
15 +++ b/arch/mips/bcm963xx/setup.c
17 _machine_halt = brcm_machine_halt;
18 pm_power_off = brcm_machine_halt;
20 - //board_time_init = brcm_time_init;
22 /* mpi initialization */
25 --- a/arch/mips/bcm963xx/time.c
26 +++ b/arch/mips/bcm963xx/time.c
28 return (mips_hpt_frequency / HZ);
33 - * There are a lot of conceptually broken versions of the MIPS timer interrupt
34 - * handler floating around. This one is rather different, but the algorithm
35 - * is provably more robust.
38 -irqreturn_t brcm_timer_interrupt(struct pt_regs *regs)
40 - int irq = MIPS_TIMER_INT;
43 - kstat_this_cpu.irqs[irq]++;
45 - timer_interrupt(irq, regs);
51 void __init plat_time_init(void)
53 unsigned int est_freq, flags;
55 (est_freq % 1000000) * 100 / 1000000);
56 local_irq_restore(flags);
60 -void __init plat_timer_setup(struct irqaction *irq)
62 - r4k_cur = (read_c0_count() + r4k_offset);
63 - write_c0_compare(r4k_cur);
64 - set_c0_status(IE_IRQ5);