mb/starlabs/starlite: Set card_reader fallback value to 0

The `card_reader` option is only available on specific boards,
so to avoid enabling a USB port that isn't connected, set the
fallback value to 0 instead of 1.

Change-Id: Ied540d6242758663db7a7a11fbefb5c4a84b942d
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90770
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-15 20:04:01 +00:00
commit 0f450a8d9c

View file

@ -78,6 +78,6 @@ void devtree_update(void)
gna_dev->enabled = 0;
/* Enable/Disable Card Reader based on CMOS Settings */
if (get_uint_option("card_reader", 1) == 0)
if (get_uint_option("card_reader", 0) == 0)
cfg->usb2_ports[3].enable = 0;
}