Yidi Lin has submitted this change. ( https://review.coreboot.org/c/coreboot/+/85828?usp=email )
(
4 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: mb/google/rauru: Determine PCIe init by storage type ......................................................................
mb/google/rauru: Determine PCIe init by storage type
BUG=b:368244423 TEST=emerge-rauru coreboot
Change-Id: Iaee7c346f4eaf004437aed3554d9275c9b821ad8 Signed-off-by: Yidi Lin yidilin@chromium.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/85828 Reviewed-by: Yu-Ping Wu yupingso@google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/google/rauru/mainboard.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Yu-Ping Wu: Looks good to me, approved
diff --git a/src/mainboard/google/rauru/mainboard.c b/src/mainboard/google/rauru/mainboard.c index db9d099..817bcf2 100644 --- a/src/mainboard/google/rauru/mainboard.c +++ b/src/mainboard/google/rauru/mainboard.c @@ -91,7 +91,7 @@
bool mainboard_needs_pcie_init(void) { - return true; + return mainboard_get_storage_type() == STORAGE_NVME; }
static void mainboard_init(struct device *dev)