]> git.karo-electronics.de Git - linux-beck.git/commitdiff
powerpc/xmon: Fix build when 4xx=y and 44x=n
authorMichael Ellerman <mpe@ellerman.id.au>
Wed, 12 Nov 2014 05:54:54 +0000 (16:54 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 12 Nov 2014 05:54:54 +0000 (16:54 +1100)
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>
arch/powerpc/xmon/xmon.c

index 506d25681fe3cbd7a35accd2c6ce961c9e6f838d..ef18021d52e1e58cf52d0bd425a97709bd8d077f 100644 (file)
@@ -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;