From 0df085bb36f46dd7f9f378de7b84ccf4ee91ce28 Mon Sep 17 00:00:00 2001 From: Maxmillion McLaughlin Date: Fri, 1 Sep 2023 09:28:28 -0600 Subject: [PATCH] drivers: sensor: remove LOG_INF from ntc_thermistor_sample_fetch() LOG_INF() inside of a sample_fetch create noise in the logs and is inconsistent with other sensor driver implementations. Signed-off-by: Maxmillion McLaughlin --- drivers/sensor/ntc_thermistor/ntc_thermistor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/sensor/ntc_thermistor/ntc_thermistor.c b/drivers/sensor/ntc_thermistor/ntc_thermistor.c index 4730c5fbabd434..18c3b291645611 100644 --- a/drivers/sensor/ntc_thermistor/ntc_thermistor.c +++ b/drivers/sensor/ntc_thermistor/ntc_thermistor.c @@ -65,7 +65,6 @@ static int ntc_thermistor_channel_get(const struct device *dev, enum sensor_chan temp = ntc_get_temp_mc(&cfg->ntc_cfg.type, ohm); val->val1 = temp / 1000; val->val2 = (temp % 1000) * 1000; - LOG_INF("ntc temp says %u", val->val1); break; default: return -ENOTSUP;