From 7d40460e376268e1d5852045b226f86b8769da8c Mon Sep 17 00:00:00 2001 From: Priyansh Jain Date: Wed, 22 Jun 2022 17:47:59 +0530 Subject: [PATCH] drivers: thermal: qmi_sensor: Add new sdr thermistors Add new sdr thermistors support. The support includes for the qmi sensors sdr0_pa, sdr1_pa. Change-Id: If6019170095d55e41c617be14865f5079390430b Signed-off-by: Priyansh Jain --- drivers/thermal/qcom/qmi_sensors.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/thermal/qcom/qmi_sensors.h b/drivers/thermal/qcom/qmi_sensors.h index 657f38a88e81..eed7a55e2c70 100644 --- a/drivers/thermal/qcom/qmi_sensors.h +++ b/drivers/thermal/qcom/qmi_sensors.h @@ -82,6 +82,8 @@ enum qmi_ts_sensor { QMI_TS_EPM5, QMI_TS_EPM6, QMI_TS_EPM7, + QMI_TS_SDR0_PA, + QMI_TS_SDR1_PA, QMI_TS_MAX_NR }; @@ -158,6 +160,8 @@ static char sensor_clients[QMI_TS_MAX_NR][QMI_CLIENT_NAME_LENGTH] = { {"epm5"}, {"epm6"}, {"epm7"}, + {"sdr0_pa"}, + {"sdr1_pa"}, }; #endif /* __QMI_SENSORS_H__ */