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:
parent
94672e2b45
commit
0f450a8d9c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue