summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/xmon
diff options
context:
space:
mode:
authorMichael Ellerman2014-11-12 06:54:54 +0100
committerMichael Ellerman2014-11-12 06:54:54 +0100
commitd8ee6f34fdd28ade6b7b3a9be175bc5c0c3cfb38 (patch)
tree01fc89a393e4d4e918296a0a5cb721545be73c89 /arch/powerpc/xmon
parentMerge branch 'topic/opal-ipmi' into next (diff)
downloadkernel-qcow2-linux-d8ee6f34fdd28ade6b7b3a9be175bc5c0c3cfb38.tar.gz
kernel-qcow2-linux-d8ee6f34fdd28ade6b7b3a9be175bc5c0c3cfb38.tar.xz
kernel-qcow2-linux-d8ee6f34fdd28ade6b7b3a9be175bc5c0c3cfb38.zip
powerpc/xmon: Fix build when 4xx=y and 44x=n
dump_tlb_44x() is only defined when 44x=y, but the ifdef in xmon.c checks for 4xx, leading to a build failure: arch/powerpc/xmon/xmon.c:912:4: error: implicit declaration of function 'dump_tlb_44x' Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/xmon')
-rw-r--r--arch/powerpc/xmon/xmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index 506d25681fe3..ef18021d52e1 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -907,7 +907,7 @@ cmds(struct pt_regs *excp)
case 'u':
dump_segments();
break;
-#elif defined(CONFIG_4xx)
+#elif defined(CONFIG_44x)
case 'u':
dump_tlb_44x();
break;