Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86212?usp=email )
(
3 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: mb/starlabs/starbook/mtl: Correct HDA Subsystem ID ......................................................................
mb/starlabs/starbook/mtl: Correct HDA Subsystem ID
This value used was just wrong; set the correct one that matches the verb table.
Change-Id: I400d8a4f8472359e5213a1ce9d51a69cde051098 Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/86212 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@gmail.com --- M src/mainboard/starlabs/starbook/variants/mtl/romstage.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Matt DeVillier: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/mainboard/starlabs/starbook/variants/mtl/romstage.c b/src/mainboard/starlabs/starbook/variants/mtl/romstage.c index 3181865..956f9c5 100644 --- a/src/mainboard/starlabs/starbook/variants/mtl/romstage.c +++ b/src/mainboard/starlabs/starbook/variants/mtl/romstage.c @@ -36,5 +36,5 @@ if (get_uint_option("wireless", 1) == 0) mupd->FspmConfig.PcieRpEnableMask &= ~(1 << 8);
- mupd->FspmConfig.PchHdaSubSystemIds = 0x14f1035e; + mupd->FspmConfig.PchHdaSubSystemIds = 0x70381e50; };