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:
parent
6bf998765c
commit
90b819b279
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue