The following commit has been merged into the x86/cpu branch of tip: Commit-ID: b5034c63858d8cb44587bb1ce5a0790a1b4e4a05 Gitweb: https://git.kernel.org/tip/b5034c63858d8cb44587bb1ce5a0790a1b4e4a05 Author: Baolin Liu <liubaolin@xxxxxxxxxx> AuthorDate: Wed, 09 Aug 2023 16:09:11 +08:00 Committer: Ingo Molnar <mingo@xxxxxxxxxx> CommitterDate: Fri, 29 Sep 2023 11:24:09 +02:00 x86/cpu/amd: Remove redundant 'break' statement This break is after the return statement, so it is redundant & confusing, and should be deleted. Signed-off-by: Baolin Liu <liubaolin@xxxxxxxxxx> Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx> Link: https://lore.kernel.org/r/396ba14d.2726.189d957b74b.Coremail.liubaolin12138@xxxxxxx --- arch/x86/kernel/cpu/amd.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 1011ce2..c3cb69e 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c @@ -1001,7 +1001,6 @@ static bool cpu_has_zenbleed_microcode(void) default: return false; - break; } if (boot_cpu_data.microcode < good_rev)