summaryrefslogtreecommitdiffstats
path: root/src/ec/starlabs
diff options
context:
space:
mode:
authorSean Rhodes <sean@starlabs.systems>2023-04-25 22:51:57 +0100
committerMartin L Roth <gaumless@gmail.com>2023-04-28 15:30:25 +0000
commitc45cfadf367048d8b49291986288ab3645a03d92 (patch)
tree460054765aca9f4ea52e8cee0f2a192fae810440 /src/ec/starlabs
parent7e300f51aca3833f3a5f2fffe6e36b72b718bc67 (diff)
downloadcoreboot-c45cfadf367048d8b49291986288ab3645a03d92.tar.gz
coreboot-c45cfadf367048d8b49291986288ab3645a03d92.tar.bz2
coreboot-c45cfadf367048d8b49291986288ab3645a03d92.zip
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: I9fcbb497f14ed0c97ff05c6c01a3929522786781 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74744 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Diffstat (limited to 'src/ec/starlabs')
-rw-r--r--src/ec/starlabs/merlin/ite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/starlabs/merlin/ite.c b/src/ec/starlabs/merlin/ite.c
index 973064727659..0f807debf82e 100644
--- a/src/ec/starlabs/merlin/ite.c
+++ b/src/ec/starlabs/merlin/ite.c
@@ -174,7 +174,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)));