Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86176?usp=email )
Change subject: mb/starlabs/starbook/mtl: Fallback to the GNA being disabled ......................................................................
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 --- M src/mainboard/starlabs/starbook/variants/mtl/devtree.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/mainboard/starlabs/starbook/variants/mtl/devtree.c b/src/mainboard/starlabs/starbook/variants/mtl/devtree.c index a97ff8a..a894479 100644 --- a/src/mainboard/starlabs/starbook/variants/mtl/devtree.c +++ b/src/mainboard/starlabs/starbook/variants/mtl/devtree.c @@ -61,6 +61,6 @@ 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; }