diff options
author | Krystian Hebel <krystian.hebel@3mdeb.com> | 2019-03-01 11:27:22 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2019-03-02 19:32:18 +0000 |
commit | 65b514c64551b8e7516c2bd66646ebf6eeec379a (patch) | |
tree | 64e0f6dc05bc9ff2a1f43601c70da3953adb5156 /src/superio | |
parent | 49aaff799f279901ddb0d1bff37b35b59ef67821 (diff) | |
download | coreboot-65b514c64551b8e7516c2bd66646ebf6eeec379a.tar.xz |
superio/ite/common/env_ctrl.c: fix IS_ENABLED argument
There was CONFIG_ prefix missing in SUPERIO_ITE_ENV_CTRL_FAN16_CONFIG
option, this patch fixes it.
Signed-off-by: Krystian Hebel <krystian.hebel@3mdeb.com>
Change-Id: I52919671569175141560cb73e42344aa1725c112
Reviewed-on: https://review.coreboot.org/c/31674
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio')
-rw-r--r-- | src/superio/ite/common/env_ctrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/ite/common/env_ctrl.c b/src/superio/ite/common/env_ctrl.c index 1dc5bb68f5..92c9bcab3d 100644 --- a/src/superio/ite/common/env_ctrl.c +++ b/src/superio/ite/common/env_ctrl.c @@ -213,7 +213,7 @@ static void enable_fan(const u16 base, const u8 fan, ite_ec_write(base, ITE_EC_FAN_CTL_MODE, reg); } - if (IS_ENABLED(SUPERIO_ITE_ENV_CTRL_FAN16_CONFIG) + if (IS_ENABLED(CONFIG_SUPERIO_ITE_ENV_CTRL_FAN16_CONFIG) && conf->mode >= FAN_MODE_ON) { reg = ite_ec_read(base, ITE_EC_FAN_TAC_COUNTER_ENABLE); reg |= ITE_EC_FAN_TAC_16BIT_ENABLE(fan); |