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>
This commit is contained in:
Sean Rhodes 2025-01-29 13:40:09 +00:00
commit f91312f3be

View file

@ -36,5 +36,5 @@ void mainboard_memory_init_params(FSPM_UPD *mupd)
if (get_uint_option("wireless", 1) == 0)
mupd->FspmConfig.PcieRpEnableMask &= ~(1 << 8);
mupd->FspmConfig.PchHdaSubSystemIds = 0x14f1035e;
mupd->FspmConfig.PchHdaSubSystemIds = 0x70381e50;
};