Skip to content

Commit 1749b55

Browse files
Russell King (Oracle)gregkh
authored andcommitted
ARM: fix co-processor register typo
commit 33970b0 upstream. In the recent Spectre BHB patches, there was a typo that is only exposed in certain configurations: mcr p15,0,XX,c7,r5,4 should have been mcr p15,0,XX,c7,c5,4 Reported-by: kernel test robot <lkp@intel.com> Fixes: b9baf5c ("ARM: Spectre-BHB workaround") Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent a330601 commit 1749b55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/arm/include/asm/assembler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
.endm
114114

115115
.macro isb, args
116-
mcr p15, 0, r0, c7, r5, 4
116+
mcr p15, 0, r0, c7, c5, 4
117117
.endm
118118
#endif
119119

0 commit comments

Comments
 (0)