summaryrefslogtreecommitdiff
path: root/driver/temp_sensor/tmp006.c
diff options
context:
space:
mode:
authorMichał Barnaś <mb@semihalf.com>2021-11-30 16:35:56 +0100
committerCommit Bot <commit-bot@chromium.org>2022-01-10 17:21:29 +0000
commit42d03a00128e4be0d149e6142d1987518cfead20 (patch)
treef90472caaeb0ffe85b64afe1b093207f50e8e2d9 /driver/temp_sensor/tmp006.c
parent6f2db445178f9e682cf8438d8d6b996551ae0eaa (diff)
downloadchrome-ec-42d03a00128e4be0d149e6142d1987518cfead20.tar.gz
config: change temp_sensor_power from config to gpio
Split the temp_sensor_power config to separate config and gpio definition. To match the behavior of other optional gpios, there should be config that enables support for feature that requires gpio and per-board define that assigns custom GPIO name to board specific one. BRANCH=main BUG=b:181983966 TEST=zmake testall, compare_build.sh Change-Id: I57ff2532444960170d7a8a08027f13fbce8f34a2 Signed-off-by: Michał Barnaś <mb@semihalf.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3314583 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'driver/temp_sensor/tmp006.c')
-rw-r--r--driver/temp_sensor/tmp006.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/temp_sensor/tmp006.c b/driver/temp_sensor/tmp006.c
index 22f4402747..96922c857c 100644
--- a/driver/temp_sensor/tmp006.c
+++ b/driver/temp_sensor/tmp006.c
@@ -75,8 +75,8 @@ static const struct tmp006_data_t tmp006_data_default = {
static int tmp006_has_power(int idx)
{
-#ifdef CONFIG_TEMP_SENSOR_POWER_GPIO
- return gpio_get_level(CONFIG_TEMP_SENSOR_POWER_GPIO);
+#ifdef CONFIG_TEMP_SENSOR_POWER
+ return gpio_get_level(GPIO_TEMP_SENSOR_POWER);
#else
return 1;
#endif