diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-10-07 14:44:33 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-07 21:38:28 -0400 |
commit | 937a801576f954bd030d7c4a5a94571710d87c0b (patch) | |
tree | 48d3440f765b56cf32a89b4b8193dd033d8227a8 /arch/mips/sibyte/sb1250/time.c | |
parent | 31aa36658a123263a9a69896e348b9600e050679 (diff) |
[MIPS] Complete fixes after removal of pt_regs argument to int handlers.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte/sb1250/time.c')
-rw-r--r-- | arch/mips/sibyte/sb1250/time.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/sibyte/sb1250/time.c b/arch/mips/sibyte/sb1250/time.c index 4b669dc86ef4..0d17aec03dd7 100644 --- a/arch/mips/sibyte/sb1250/time.c +++ b/arch/mips/sibyte/sb1250/time.c | |||
@@ -125,7 +125,7 @@ void sb1250_time_init(void) | |||
125 | */ | 125 | */ |
126 | } | 126 | } |
127 | 127 | ||
128 | void sb1250_timer_interrupt(struct pt_regs *regs) | 128 | void sb1250_timer_interrupt(void) |
129 | { | 129 | { |
130 | int cpu = smp_processor_id(); | 130 | int cpu = smp_processor_id(); |
131 | int irq = K_INT_TIMER_0 + cpu; | 131 | int irq = K_INT_TIMER_0 + cpu; |
@@ -138,13 +138,13 @@ void sb1250_timer_interrupt(struct pt_regs *regs) | |||
138 | /* | 138 | /* |
139 | * CPU 0 handles the global timer interrupt job | 139 | * CPU 0 handles the global timer interrupt job |
140 | */ | 140 | */ |
141 | ll_timer_interrupt(irq, regs); | 141 | ll_timer_interrupt(irq); |
142 | } | 142 | } |
143 | else { | 143 | else { |
144 | /* | 144 | /* |
145 | * other CPUs should just do profiling and process accounting | 145 | * other CPUs should just do profiling and process accounting |
146 | */ | 146 | */ |
147 | ll_local_timer_interrupt(irq, regs); | 147 | ll_local_timer_interrupt(irq); |
148 | } | 148 | } |
149 | } | 149 | } |
150 | 150 | ||