From 90b819b2793c82a33747aeb883de04d80487e14c Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Tue, 27 Jan 2026 20:59:28 +0000 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/90958 Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) --- src/mainboard/starlabs/starfighter/variants/mtl/devtree.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mainboard/starlabs/starfighter/variants/mtl/devtree.c b/src/mainboard/starlabs/starfighter/variants/mtl/devtree.c index c4b0da67fd..5ac632b4b7 100644 --- a/src/mainboard/starlabs/starfighter/variants/mtl/devtree.c +++ b/src/mainboard/starlabs/starfighter/variants/mtl/devtree.c @@ -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;