From cc115cb71add3a6f42b1c34b2c1e85955572b9ff Mon Sep 17 00:00:00 2001 From: Raihow Shi Date: Sat, 7 May 2022 16:25:13 +0800 Subject: [PATCH] mb/google/brask/variants/moli: return the default VBT Both option-HDMI and option-DP use the same setting of vbt, and ABSENT is physically remove option board from motherboard, so set default vbt has option-DP setting and only return it. BUG=b:231769131 TEST=emerge-brask coreboot. Signed-off-by: Raihow Shi Change-Id: I440143dabcf04c103f2a4420a7e4afb8ec12ec1c Reviewed-on: https://review.coreboot.org/c/coreboot/+/64139 Tested-by: build bot (Jenkins) Reviewed-by: Nick Vaccaro Reviewed-by: Eric Lai --- src/mainboard/google/brya/variants/moli/ramstage.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mainboard/google/brya/variants/moli/ramstage.c b/src/mainboard/google/brya/variants/moli/ramstage.c index af563ba818..588c939710 100644 --- a/src/mainboard/google/brya/variants/moli/ramstage.c +++ b/src/mainboard/google/brya/variants/moli/ramstage.c @@ -34,10 +34,6 @@ const struct psys_config psys_config = { const char *mainboard_vbt_filename(void) { - if (fw_config_probe(FW_CONFIG(DB_OPT, OPT_HDMI))) - return "vbt-moli_HDMI.bin"; - else if (fw_config_probe(FW_CONFIG(DB_OPT, OPT_DP))) - return "vbt-moli_DP.bin"; return "vbt-moli.bin"; }