diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-04-25 22:51:57 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-04-28 15:30:25 +0000 |
commit | c45cfadf367048d8b49291986288ab3645a03d92 (patch) | |
tree | 460054765aca9f4ea52e8cee0f2a192fae810440 /src | |
parent | 7e300f51aca3833f3a5f2fffe6e36b72b718bc67 (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: 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')
-rw-r--r-- | src/ec/starlabs/merlin/ite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/starlabs/merlin/ite.c b/src/ec/starlabs/merlin/ite.c index 9730647276..0f807debf8 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))); |