diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-10-19 12:26:25 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-19 13:15:58 -0400 |
commit | 1d9ef3ecd7fa2ca28064f03614f37409100c0527 (patch) | |
tree | 36ec8b13f3544fa6fbaa8333435fd7b9161c5a14 /arch/mips/sni | |
parent | d527eef5b7f151320921f0ff7a88297cefc5be72 (diff) |
[MIPS] Kill duplicated setup_irq() for cp0 timer
Also many plat_timer_setup() can be killed too.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sni')
-rw-r--r-- | arch/mips/sni/time.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/mips/sni/time.c b/arch/mips/sni/time.c index b80877349d38..0910b35cb71f 100644 --- a/arch/mips/sni/time.c +++ b/arch/mips/sni/time.c | |||
@@ -121,15 +121,6 @@ void __init plat_time_init(void) | |||
121 | setup_pit_timer(); | 121 | setup_pit_timer(); |
122 | } | 122 | } |
123 | 123 | ||
124 | /* | ||
125 | * R4k counter based timer interrupt. Works on RM200-225 and possibly | ||
126 | * others but not on RM400 | ||
127 | */ | ||
128 | static void __init sni_cpu_timer_setup(struct irqaction *irq) | ||
129 | { | ||
130 | setup_irq(SNI_MIPS_IRQ_CPU_TIMER, irq); | ||
131 | } | ||
132 | |||
133 | void __init plat_timer_setup(struct irqaction *irq) | 124 | void __init plat_timer_setup(struct irqaction *irq) |
134 | { | 125 | { |
135 | switch (sni_brd_type) { | 126 | switch (sni_brd_type) { |
@@ -139,15 +130,6 @@ void __init plat_timer_setup(struct irqaction *irq) | |||
139 | case SNI_BRD_MINITOWER: | 130 | case SNI_BRD_MINITOWER: |
140 | sni_a20r_timer_setup(irq); | 131 | sni_a20r_timer_setup(irq); |
141 | break; | 132 | break; |
142 | |||
143 | case SNI_BRD_PCI_TOWER: | ||
144 | case SNI_BRD_RM200: | ||
145 | case SNI_BRD_PCI_MTOWER: | ||
146 | case SNI_BRD_PCI_DESKTOP: | ||
147 | case SNI_BRD_PCI_TOWER_CPLUS: | ||
148 | case SNI_BRD_PCI_MTOWER_CPLUS: | ||
149 | sni_cpu_timer_setup(irq); | ||
150 | break; | ||
151 | } | 133 | } |
152 | } | 134 | } |
153 | 135 | ||