1
0
Fork 0

[POWERPC] Fix backwards ? : when printing machine type

Looks like someone got this backwards, highlighting the perils of the
? : !!! :)

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
hifive-unleashed-5.1
anton@samba.org 2007-03-20 20:38:14 -05:00 committed by Paul Mackerras
parent 34c2a14fc2
commit ae7f446377
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ int die(const char *str, struct pt_regs *regs, long err)
#ifdef CONFIG_NUMA
printk("NUMA ");
#endif
printk("%s\n", ppc_md.name ? "" : ppc_md.name);
printk("%s\n", ppc_md.name ? ppc_md.name : "");
print_modules();
show_regs(regs);