From 820a2e175c9a86a4213333e12196542951d8c625 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Tue, 25 Apr 2023 08:34:00 +0100 Subject: [PATCH] mb/starlabs/starbook/adl: Correct port for Hot Plug Commit 5103b87a4d7b ("mb/starlabs/starbook/adl: Add an option to enable Hot Plug") introduced an option to enable Hot Plug for the SSD. The port was set to 4 (RP5) which is the wireless card. Change this to 8 (RP9) which is the SSD. Signed-off-by: Sean Rhodes Change-Id: I884f4997d73e31bd422477952466f168afad66a1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74738 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Lean Sheng Tan --- src/mainboard/starlabs/starbook/variants/adl/ramstage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/starlabs/starbook/variants/adl/ramstage.c b/src/mainboard/starlabs/starbook/variants/adl/ramstage.c index 7accb1d365..a2c39267fe 100644 --- a/src/mainboard/starlabs/starbook/variants/adl/ramstage.c +++ b/src/mainboard/starlabs/starbook/variants/adl/ramstage.c @@ -11,5 +11,5 @@ void mainboard_silicon_init_params(FSP_S_CONFIG *supd) * third-party drives are detected. */ if (get_uint_option("pci_hot_plug", 0) == 1) - supd->PcieRpHotPlug[4] = 1; + supd->PcieRpHotPlug[8] = 1; }