diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-05-02 10:54:49 +0100 |
---|---|---|
committer | Matt DeVillier <matt.devillier@amd.corp-partner.google.com> | 2023-05-03 21:50:36 +0000 |
commit | 543bba8f8f6789dfb8d26a099695ffef2dd649ae (patch) | |
tree | cbbb72c56bc1e050cc43a15c3608c4b61b8b4386 /src/ec | |
parent | 6a41b99a4a0e62b13ad3cdc2f612ae17c6603fd4 (diff) |
ec/starlabs/merlin: Change the fallback value for fn_ctrl_swap
Change the fallback value of the `fn_ctrl_swap` option to 0, which
is disabled.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I76329ec59ba630c987a122bffb8045150facdf08
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74916
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/starlabs/merlin/nuvoton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/starlabs/merlin/nuvoton.c b/src/ec/starlabs/merlin/nuvoton.c index e62f3dcb53..f4b2bb4d49 100644 --- a/src/ec/starlabs/merlin/nuvoton.c +++ b/src/ec/starlabs/merlin/nuvoton.c @@ -110,7 +110,7 @@ static void merlin_init(struct device *dev) ec_write(ECRAM_FN_CTRL_REVERSE, get_ec_value_from_option("fn_ctrl_swap", - 1, + 0, fn_ctrl_swap, ARRAY_SIZE(fn_ctrl_swap))); |