To be compliant with the hwmon interface the unit needs to be
millidegree Celsius. Fix that.

Reported-by: Matthias Kaehlcke <m...@google.com>
Signed-off-by: Rajkumar Manoharan <rmano...@qti.qualcomm.com>
---
v2: added new line for better readability.
 drivers/net/wireless/ath/ath10k/thermal.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ath/ath10k/thermal.c 
b/drivers/net/wireless/ath/ath10k/thermal.c
index b14ae8d..e915178 100644
--- a/drivers/net/wireless/ath/ath10k/thermal.c
+++ b/drivers/net/wireless/ath/ath10k/thermal.c
@@ -160,7 +160,8 @@ static ssize_t ath10k_thermal_show_temp(struct device *dev,
        temperature = ar->thermal.temperature;
        spin_unlock_bh(&ar->data_lock);
 
-       ret = snprintf(buf, PAGE_SIZE, "%d", temperature);
+       /* display in millidegree celcius */
+       ret = snprintf(buf, PAGE_SIZE, "%d\n", temperature * 1000);
 out:
        mutex_unlock(&ar->conf_mutex);
        return ret;
-- 
2.2.1

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to