Skip to content

Commit

Permalink
ARM: riscpc: remove IRQ_TIMER
Browse files Browse the repository at this point in the history
Use IRQ_TIMER0 instead, which is the same thing.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Mar 24, 2012
1 parent 18a66d5 commit 927b6c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions arch/arm/mach-rpc/include/mach/irqs.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,4 @@
*/
#define FIQ_START 64

#define IRQ_TIMER IRQ_TIMER0

#define NR_IRQS 128
2 changes: 1 addition & 1 deletion arch/arm/mach-rpc/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static struct irqaction ioc_timer_irq = {
static void __init ioc_timer_init(void)
{
ioctime_init();
setup_irq(IRQ_TIMER, &ioc_timer_irq);
setup_irq(IRQ_TIMER0, &ioc_timer_irq);
}

struct sys_timer ioc_timer = {
Expand Down

0 comments on commit 927b6c4

Please sign in to comment.