Explorar el Código

Fix a typo in cpu/mpc824x/interrupts.c

Since December 2003 the timer_interrupt_cpu() function in
cpu/mpc824x/interrupts.c contains what seems to be a superfluous
parameter. Remove it.

Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
Guennadi Liakhovetski hace 17 años
padre
commit
59543fe00a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      cpu/mpc824x/interrupts.c

+ 1 - 1
cpu/mpc824x/interrupts.c

@@ -86,7 +86,7 @@ void irq_free_handler (int vec)
  vga?
  */
 
-void timer_interrupt_cpu (struct pt_regs *regs, ulong timestamp)
+void timer_interrupt_cpu (struct pt_regs *regs)
 {
 	/* nothing to do here */
 	return;