diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-02-18 18:14:19 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-02-18 18:14:19 +0100 |
commit | 45a98a71d2daa8c58a99c17343a5d118b085a9be (patch) | |
tree | f0b977da38591f784a7766f74057d1f14af88c6e /arch/arm64 | |
parent | Merge tag 'powerpc-5.17-4' of git://git.kernel.org/pub/scm/linux/kernel/git/p... (diff) | |
parent | arm64: Correct wrong label in macro __init_el2_gicv3 (diff) | |
download | linux-45a98a71d2daa8c58a99c17343a5d118b085a9be.tar.xz linux-45a98a71d2daa8c58a99c17343a5d118b085a9be.zip |
Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
Pull arm64 fix from Catalin Marinas:
"Fix wrong branch label in the EL2 GICv3 initialisation code"
* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
arm64: Correct wrong label in macro __init_el2_gicv3
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/include/asm/el2_setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/el2_setup.h b/arch/arm64/include/asm/el2_setup.h index 3198acb2aad8..7f3c87f7a0ce 100644 --- a/arch/arm64/include/asm/el2_setup.h +++ b/arch/arm64/include/asm/el2_setup.h @@ -106,7 +106,7 @@ msr_s SYS_ICC_SRE_EL2, x0 isb // Make sure SRE is now set mrs_s x0, SYS_ICC_SRE_EL2 // Read SRE back, - tbz x0, #0, 1f // and check that it sticks + tbz x0, #0, .Lskip_gicv3_\@ // and check that it sticks msr_s SYS_ICH_HCR_EL2, xzr // Reset ICC_HCR_EL2 to defaults .Lskip_gicv3_\@: .endm |