Skip to content

Commit 33970b0

Browse files
Russell King (Oracle)torvalds
authored andcommitted
ARM: fix co-processor register typo
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 <[email protected]> Fixes: b9baf5c ("ARM: Spectre-BHB workaround") Signed-off-by: Russell King (Oracle) <[email protected]> Acked-by: Catalin Marinas <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 330f4c5 commit 33970b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)