[tip:,x86/cpu] x86/cpu/amd: Remove redundant 'break' statement

Message ID 169597996101.27769.5754143943416979953.tip-bot2@tip-bot2
State New
Headers
Series [tip:,x86/cpu] x86/cpu/amd: Remove redundant 'break' statement |

Commit Message

tip-bot2 for Thomas Gleixner Sept. 29, 2023, 9:32 a.m. UTC
  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@kylinos.cn>
AuthorDate:    Wed, 09 Aug 2023 16:09:11 +08:00
Committer:     Ingo Molnar <mingo@kernel.org>
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@kylinos.cn>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/396ba14d.2726.189d957b74b.Coremail.liubaolin12138@163.com
---
 arch/x86/kernel/cpu/amd.c | 1 -
 1 file changed, 1 deletion(-)
  

Patch

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)