Commit ae7f4463 authored by anton@samba.org's avatar anton@samba.org Committed by Paul Mackerras

[POWERPC] Fix backwards ? : when printing machine type

Looks like someone got this backwards, highlighting the perils of the
? : !!! :)
Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 34c2a14f
...@@ -153,7 +153,7 @@ int die(const char *str, struct pt_regs *regs, long err) ...@@ -153,7 +153,7 @@ int die(const char *str, struct pt_regs *regs, long err)
#ifdef CONFIG_NUMA #ifdef CONFIG_NUMA
printk("NUMA "); printk("NUMA ");
#endif #endif
printk("%s\n", ppc_md.name ? "" : ppc_md.name); printk("%s\n", ppc_md.name ? ppc_md.name : "");
print_modules(); print_modules();
show_regs(regs); show_regs(regs);
......
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