OSDN Git Service

powerpc/xmon: Specify the full format in DUMP() macro
authorMichael Ellerman <mpe@ellerman.id.au>
Mon, 21 May 2018 11:06:19 +0000 (21:06 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 25 May 2018 02:04:35 +0000 (12:04 +1000)
commit6671683db8540e5766f44a1089549c168730ae41
tree920035c808a053221cdfa70363b58f2717749e59
parent7daf59300999693b85233762b847f1b2313cccbd
powerpc/xmon: Specify the full format in DUMP() macro

In dump_one_paca() the DUMP macro unconditionally prepends '#' to the
printf format specifier. In most cases we're using either 'x' or 'lx'
etc. and that is OK. But for 'p' and other formats using '#' is
actually undefined, and once we enable printf() checking for
xmon_printf() we will get warnings from the compiler.

So just have each usage specify the full format, that way we can omit
'#' when it's inappropriate.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Reviewed-by: Mathieu Malaterre <malat@debian.org>
arch/powerpc/xmon/xmon.c