From 3c90559d742a64d6d24f0c5da143323af9ad9854 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Wed, 8 Feb 2023 12:31:01 +0100 Subject: [PATCH] soc/amd/picasso/soc_util.c: Remove unneeded "break" "break" is useless after "return". Change-Id: I84bc506a3d50e937797f42659299bf90ce392e09 Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/72895 Tested-by: build bot (Jenkins) Reviewed-by: Fred Reitberger Reviewed-by: Eric Lai Reviewed-by: Felix Singer --- src/soc/amd/picasso/soc_util.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/soc/amd/picasso/soc_util.c b/src/soc/amd/picasso/soc_util.c index d2ac6db7cd..3cbd8eb20f 100644 --- a/src/soc/amd/picasso/soc_util.c +++ b/src/soc/amd/picasso/soc_util.c @@ -153,7 +153,6 @@ enum soc_type get_soc_type(void) case SOCKET_FT5: /* add is_fam17_20() CPUID sanity check here? */ return SOC_POLLOCK; - break; case SOCKET_AM4: /* AM4 SoC type detection logic not implemented */ break;