From: Heiner Kallweit Date: Wed, 4 Oct 2017 19:05:17 +0000 (+0200) Subject: firmware: arm_scpi: improve struct sensor_value X-Git-Tag: v4.19~2158^2~21^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c7ae6467df557f25daf42e78202531bc44c83df;p=platform%2Fkernel%2Flinux-rpi.git firmware: arm_scpi: improve struct sensor_value lo_val and hi_val together in this order are a little endian 64 bit value. Therefore we can simplify struct sensor_value and the code by defining it as a __le64 value and by using le64_to_cpu. Signed-off-by: Heiner Kallweit Signed-off-by: Sudeep Holla --- diff --git a/drivers/firmware/arm_scpi.c b/drivers/firmware/arm_scpi.c index d305b92..c923d1e 100644 --- a/drivers/firmware/arm_scpi.c +++ b/drivers/firmware/arm_scpi.c @@ -347,9 +347,8 @@ struct _scpi_sensor_info { }; struct sensor_value { - __le32 lo_val; - __le32 hi_val; -} __packed; + __le64 val; +}; struct dev_pstate_set { __le16 dev_id; @@ -785,11 +784,10 @@ static int scpi_sensor_get_value(u16 sensor, u64 *val) return ret; if (scpi_info->is_legacy) - /* only 32-bits supported, hi_val can be junk */ - *val = le32_to_cpu(buf.lo_val); + /* only 32-bits supported, upper 32 bits can be junk */ + *val = le32_to_cpup((__le32 *)&buf.val); else - *val = (u64)le32_to_cpu(buf.hi_val) << 32 | - le32_to_cpu(buf.lo_val); + *val = le64_to_cpu(buf.val); return 0; }