mb/starlabs/starfighter/mtl: Add missing control for Bluetooth

This board was missing the control of Bluetooth; add it so it
matches all the other Star Labs boards.

Change-Id: I11e39b4c02095b762717ff041a654838fd4c5897
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90958
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:59:28 +00:00
commit 90b819b279

View file

@ -15,6 +15,10 @@ void devtree_update(void)
config_t *cfg = config_of_soc();
update_power_limits(cfg);
/* Enable/Disable Bluetooth based on CMOS settings */
if (get_uint_option("bluetooth", 1) == 0)
cfg->usb2_ports[9].enable = 0;
/* Enable/Disable Webcam based on CMOS settings */
if (get_uint_option("webcam", 1) == 0)
cfg->usb2_ports[CONFIG_CCD_PORT].enable = 0;