mb/starlabs/starbook/adl: Correct port for Hot Plug

Commit 5103b87a4d ("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>
This commit is contained in:
Sean Rhodes 2023-04-25 08:34:00 +01:00 committed by Martin L Roth
parent a194e6252f
commit 820a2e175c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}