Attention is currently required from: YH Lin. Hello YH Lin,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/52033
to review the following change.
Change subject: adlrvp: fix the names of vbt files ......................................................................
adlrvp: fix the names of vbt files
Cope with change of file names.
BUG=None BRANCH=master TEST=build with adlrvp
Signed-off-by: YH Lin yueherngl@chromium.org Change-Id: I94f60d5a5ba718d83046d08e9e1dc9163bb6411d --- M src/mainboard/intel/adlrvp/mainboard.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/52033/1
diff --git a/src/mainboard/intel/adlrvp/mainboard.c b/src/mainboard/intel/adlrvp/mainboard.c index 3946204..0ab80d2 100644 --- a/src/mainboard/intel/adlrvp/mainboard.c +++ b/src/mainboard/intel/adlrvp/mainboard.c @@ -46,9 +46,9 @@ switch (sku_id) { case ADL_P_LP5_1: case ADL_P_LP5_2: - return "vbt_lp5.bin"; + return "vbt_adlrvp_lp5.bin"; case ADL_P_DDR5: - return "vbt_ddr5.bin"; + return "vbt_adlrvp_ddr5.bin"; default: return "vbt.bin"; }