summaryrefslogtreecommitdiff
path: root/src/mainboard/starlabs
diff options
context:
space:
mode:
authorSean Rhodes <sean@starlabs.systems>2023-04-25 08:34:00 +0100
committerMartin L Roth <gaumless@gmail.com>2023-04-28 15:28:51 +0000
commit820a2e175c9a86a4213333e12196542951d8c625 (patch)
tree0302bf5687daac13f654005605b06215617f33db /src/mainboard/starlabs
parenta194e6252fbfd1ad47833c17f10dd289d5f32517 (diff)
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 <sean@starlabs.systems> Change-Id: I884f4997d73e31bd422477952466f168afad66a1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74738 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Diffstat (limited to 'src/mainboard/starlabs')
-rw-r--r--src/mainboard/starlabs/starbook/variants/adl/ramstage.c2
1 files changed, 1 insertions, 1 deletions
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;
}