Commit 7f3f819e authored by Michael Ellerman's avatar Michael Ellerman

powerpc/traps: machine_check_generic() is only used on 32-bit

Make it clear that the fallback version of machine_check_generic() is
only used on 32-bit configs.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 42bff234
...@@ -618,7 +618,7 @@ int machine_check_8xx(struct pt_regs *regs) ...@@ -618,7 +618,7 @@ int machine_check_8xx(struct pt_regs *regs)
return 0; return 0;
#endif #endif
} }
#else #elif defined(CONFIG_PPC32)
int machine_check_generic(struct pt_regs *regs) int machine_check_generic(struct pt_regs *regs)
{ {
unsigned long reason = regs->msr; unsigned long reason = regs->msr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment