diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-07-14 17:35:26 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-07-15 06:05:48 +0000 |
commit | 6fedb56fd4810d69436a43bc0490225a26feadab (patch) | |
tree | 76e07a674695db7056751a8ce3eae6ed30389d62 /src/mainboard/amd/chausie | |
parent | 6ed71fd2adc06b4f887865bed2b66fe736bc774e (diff) |
mb/amd/chausie: Remove useless break after return
Change-Id: Iafc3735b6d903a4496828189db14b09d3c4d2081
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76432
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/amd/chausie')
-rw-r--r-- | src/mainboard/amd/chausie/port_descriptors.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainboard/amd/chausie/port_descriptors.c b/src/mainboard/amd/chausie/port_descriptors.c index 9a8c2740db..4d7aa8a6c0 100644 --- a/src/mainboard/amd/chausie/port_descriptors.c +++ b/src/mainboard/amd/chausie/port_descriptors.c @@ -99,15 +99,12 @@ static uint8_t get_ddi1_type(void) case 0xc: printk(BIOS_DEBUG, "Configuring DDI1 as HDMI.\n"); return DDI_HDMI; - break; case 0x13: printk(BIOS_DEBUG, "Configuring DDI1 as DP.\n"); return DDI_DP; - break; case 0x14: printk(BIOS_DEBUG, "Configuring DDI1 as eDP.\n"); return DDI_EDP; - break; default: printk(BIOS_WARNING, "Unexpected display connector type %x. Disabling DDI1.\n", connector_type); |