summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaihow Shi <raihow_shi@wistron.corp-partner.google.com>2022-05-07 16:25:13 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-05-16 13:20:13 +0000
commitcc115cb71add3a6f42b1c34b2c1e85955572b9ff (patch)
treece509de23f93a3c01a681b251a377a8c8abde3e8
parentf118656736dcf669db0dec4cb51b896f9d6eefe5 (diff)
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 <raihow_shi@wistron.corp-partner.google.com> Change-Id: I440143dabcf04c103f2a4420a7e4afb8ec12ec1c Reviewed-on: https://review.coreboot.org/c/coreboot/+/64139 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r--src/mainboard/google/brya/variants/moli/ramstage.c4
1 files changed, 0 insertions, 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";
}