arch/ppc64/kernel/traps.c: In function `AltivecUnavailableException': arch/ppc64/kernel/traps.c:514: `info' undeclared (first use in this function) arch/ppc64/kernel/traps.c:514: (Each undeclared identifier is reported only once arch/ppc64/kernel/traps.c:514: for each function it appears in.) arch/ppc64/kernel/traps.c:514: warning: passing arg 3 of `_exception' makes integer from pointer without a cast arch/ppc64/kernel/traps.c:514: too many arguments to function `_exception' Signed-off-by: Andrew Morton --- 25-power4-akpm/arch/ppc64/kernel/traps.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/ppc64/kernel/traps.c~ppc32-emulate-obsolete-instructions-fix arch/ppc64/kernel/traps.c --- 25-power4/arch/ppc64/kernel/traps.c~ppc32-emulate-obsolete-instructions-fix 2004-08-15 23:23:48.968031600 -0700 +++ 25-power4-akpm/arch/ppc64/kernel/traps.c 2004-08-15 23:23:48.971031144 -0700 @@ -511,7 +511,7 @@ void AltivecUnavailableException(struct if (user_mode(regs)) { /* A user program has executed an altivec instruction, but this kernel doesn't support altivec. */ - _exception(SIGILL, &info, regs, ILL_ILLOPC, regs->nip); + _exception(SIGILL, regs, ILL_ILLOPC, regs->nip); return; } #endif _