mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
[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>
This commit is contained in:
parent
34c2a14fc2
commit
ae7f446377
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user