mirror of https://gitee.com/openkylin/linux.git
[POWERPC] Use lowercase for hex printouts in oops messages.
Use lowercase for hex printouts in oops messages. The number of times I have tried to copy and paste from an oops into an objdump search... Signed-off-by: Anton Blanchard <anton@samba.org> Acked-by: Olof Johansson <olof@lixom.net> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
ae7f446377
commit
f6f7dde3f7
|
@ -402,11 +402,11 @@ static void printbits(unsigned long val, struct regbit *bits)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PPC64
|
#ifdef CONFIG_PPC64
|
||||||
#define REG "%016lX"
|
#define REG "%016lx"
|
||||||
#define REGS_PER_LINE 4
|
#define REGS_PER_LINE 4
|
||||||
#define LAST_VOLATILE 13
|
#define LAST_VOLATILE 13
|
||||||
#else
|
#else
|
||||||
#define REG "%08lX"
|
#define REG "%08lx"
|
||||||
#define REGS_PER_LINE 8
|
#define REGS_PER_LINE 8
|
||||||
#define LAST_VOLATILE 12
|
#define LAST_VOLATILE 12
|
||||||
#endif
|
#endif
|
||||||
|
@ -421,7 +421,7 @@ void show_regs(struct pt_regs * regs)
|
||||||
regs, regs->trap, print_tainted(), init_utsname()->release);
|
regs, regs->trap, print_tainted(), init_utsname()->release);
|
||||||
printk("MSR: "REG" ", regs->msr);
|
printk("MSR: "REG" ", regs->msr);
|
||||||
printbits(regs->msr, msr_bits);
|
printbits(regs->msr, msr_bits);
|
||||||
printk(" CR: %08lX XER: %08lX\n", regs->ccr, regs->xer);
|
printk(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
|
||||||
trap = TRAP(regs);
|
trap = TRAP(regs);
|
||||||
if (trap == 0x300 || trap == 0x600)
|
if (trap == 0x300 || trap == 0x600)
|
||||||
printk("DAR: "REG", DSISR: "REG"\n", regs->dar, regs->dsisr);
|
printk("DAR: "REG", DSISR: "REG"\n", regs->dar, regs->dsisr);
|
||||||
|
|
Loading…
Reference in New Issue