From: Steve L. <slo...@us...> - 2002-05-29 21:13:55
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv24821 Modified Files: i8259.c Log Message: typo: 'struct pt_regs' arg to i8259_do_irq() must be pointer (missing '*'). Index: i8259.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/i8259.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- i8259.c 2 Jan 2002 20:42:11 -0000 1.9 +++ i8259.c 29 May 2002 21:13:53 -0000 1.10 @@ -262,7 +262,7 @@ spin_unlock_irqrestore(&i8259A_lock, flags); } -asmlinkage void i8259_do_irq(int irq, struct pt_regs regs) +asmlinkage void i8259_do_irq(int irq, struct pt_regs *regs) { panic("i8259_do_irq: I want to be implemented"); } |