mb/starlabs/starbook/mtl: Fix Card Reader USB Port

The devtree.c was trying to disable the incorrect USB port, 3.
Correct this to 7.

Change-Id: Ibae3d104d2887706dbe2e1c13e817eeee644b5ad
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90275
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-11-29 20:50:14 +00:00
commit 908c2b54c6

View file

@ -60,7 +60,7 @@ void devtree_update(void)
/* Enable/Disable Card Reader based on CMOS Settings */
if (get_uint_option("card_reader", 1) == 0)
cfg->usb2_ports[3].enable = 0;
cfg->usb2_ports[7].enable = 0;
/* Enable/Disable GNA based on CMOS settings */
if (get_uint_option("gna", 0) == 0)