mb/starlabs/starbook/mtl: Fallback to the GNA being disabled

Most users leave the GNA disabled, so adjust the fallback to
match this.

Change-Id: I7779781266a63c8c9f779d25ff2c692bb498c594
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/86176
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-01-28 09:55:47 +00:00
commit b04b091ee9

View file

@ -61,6 +61,6 @@ void devtree_update(void)
cfg->usb2_ports[3].enable = 0;
/* Enable/Disable GNA based on CMOS settings */
if (get_uint_option("gna", 1) == 0)
if (get_uint_option("gna", 0) == 0)
gna_dev->enabled = 0;
}