mb/starlabs/starfighter/mtl: Correct option name to control wireless

This board used the older "wireless" option, which no longer exists to
control wireless. Update it to check "wifi".

Change-Id: I8ddec94ea729790c9d13cd54516b8802df0e77aa
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90957
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Sean Rhodes 2026-01-27 20:58:18 +00:00
commit 6bf998765c

View file

@ -100,7 +100,7 @@ void mainboard_memory_init_params(FSPM_UPD *mupd)
mupd->FspmConfig.VtdDisable = !vtd;
/* Enable/Disable Wireless (RP09) based on CMOS settings */
if (get_uint_option("wireless", 1) == 0)
if (get_uint_option("wifi", 1) == 0)
mupd->FspmConfig.PcieRpEnableMask &= ~(1 << 8);
/* Enable/Disable Thunderbolt based on CMOS settings */