From: Scott Wood Date: Thu, 29 May 2014 23:13:17 +0000 (-0500) Subject: powerpc/e500mc: Fix wrong value of MCSR_L2MMU_MHIT X-Git-Tag: firefly_0821_release~176^2~3459^2~94 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5d1bf1e2c00f71efb8286232ab1c95038405192b;p=firefly-linux-kernel-4.4.55.git powerpc/e500mc: Fix wrong value of MCSR_L2MMU_MHIT Signed-off-by: Scott Wood Reported-by: Ed Swarthout --- diff --git a/arch/powerpc/include/asm/reg_booke.h b/arch/powerpc/include/asm/reg_booke.h index 464f1089b532..61482925fb52 100644 --- a/arch/powerpc/include/asm/reg_booke.h +++ b/arch/powerpc/include/asm/reg_booke.h @@ -260,7 +260,7 @@ /* e500mc */ #define MCSR_DCPERR_MC 0x20000000UL /* D-Cache Parity Error */ -#define MCSR_L2MMU_MHIT 0x04000000UL /* Hit on multiple TLB entries */ +#define MCSR_L2MMU_MHIT 0x08000000UL /* Hit on multiple TLB entries */ #define MCSR_NMI 0x00100000UL /* Non-Maskable Interrupt */ #define MCSR_MAV 0x00080000UL /* MCAR address valid */ #define MCSR_MEA 0x00040000UL /* MCAR is effective address */