efc3bf1dcb3c24ad2cd25ca64b4476ed297edabf
[AGL/meta-agl-devel.git] /
1 From f32f6399b8a0a72c9e6c5c824a19f09f78f17c13 Mon Sep 17 00:00:00 2001
2 From: Cristian Marussi <cristian.marussi@arm.com>
3 Date: Thu, 19 Nov 2020 17:49:03 +0000
4 Subject: [PATCH] hwmon: scmi: update hwmon internal scale data type
5
6 Use an int to calculate scale values inside scmi_hwmon_scale() to match
7 the updated scale data type in struct scmi_sensor_info.
8
9 Cc: linux-hwmon@vger.kernel.org
10 Cc: Guenter Roeck <linux@roeck-us.net>
11 Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
12 Acked-by: Guenter Roeck <linux@roeck-us.net>
13 Signed-off-by: Vasyl Vavrychuk <vasyl.vavrychuk@opensynergy.com>
14 ---
15  drivers/hwmon/scmi-hwmon.c | 2 +-
16  1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/drivers/hwmon/scmi-hwmon.c b/drivers/hwmon/scmi-hwmon.c
19 index 09ce30cba54b..17d064e58938 100644
20 --- a/drivers/hwmon/scmi-hwmon.c
21 +++ b/drivers/hwmon/scmi-hwmon.c
22 @@ -30,7 +30,7 @@ static inline u64 __pow10(u8 x)
23  
24  static int scmi_hwmon_scale(const struct scmi_sensor_info *sensor, u64 *value)
25  {
26 -       s8 scale = sensor->scale;
27 +       int scale = sensor->scale;
28         u64 f;
29  
30         switch (sensor->type) {