Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux

Pull arm64 fix from Catalin Marinas:
"Add missing sentinels to the arm64 Spectre-BHB MIDR arrays, otherwise
is_midr_in_range_list() reads beyond the end of these arrays"

* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays

+2
+2
arch/arm64/kernel/proton-pack.c
··· 879 879 static const struct midr_range spectre_bhb_k132_list[] = { 880 880 MIDR_ALL_VERSIONS(MIDR_CORTEX_X3), 881 881 MIDR_ALL_VERSIONS(MIDR_NEOVERSE_V2), 882 + {}, 882 883 }; 883 884 static const struct midr_range spectre_bhb_k38_list[] = { 884 885 MIDR_ALL_VERSIONS(MIDR_CORTEX_A715), 885 886 MIDR_ALL_VERSIONS(MIDR_CORTEX_A720), 887 + {}, 886 888 }; 887 889 static const struct midr_range spectre_bhb_k32_list[] = { 888 890 MIDR_ALL_VERSIONS(MIDR_CORTEX_A78),