]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
iio: chemical: scd30: Cleanup initializations and fix sign-extension bug
authorMaxwell Doose <m32285159@gmail.com>
Tue, 26 May 2026 22:55:24 +0000 (17:55 -0500)
committerJonathan Cameron <jic23@kernel.org>
Wed, 27 May 2026 10:24:29 +0000 (11:24 +0100)
Include linux/bitfield.h for FIELD_GET().

Create new macros for bit manipulation in combination with manual bit
manipulation being replaced with FIELD_GET().

The current variable declaration and initializations are barely readable
and use comma separations across multiple lines. Refactor the
initializations so that mantissa and exp have separate declarations and
sign gets initialized later.

In addition (and due to the nature of the cleanup), fix a sign-extension
bug where, float32 would get bitwise anded with ~BIT(31)
(which is 0xFFFFFFFF7FFFFFFF) which corrupted the exponent.

Fixes: 64b3d8b1b0f5c ("iio: chemical: scd30: add core driver")
Reported-by: sashiko <sashiko-bot@kernel.org>
Closes: https://sashiko.dev/#/patchset/20260524020309.18618-1-m32285159%40gmail.com
Signed-off-by: Maxwell Doose <m32285159@gmail.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/chemical/scd30_core.c

index 11d6bc1b63e670292857d4741dec266227105e25..d02f2de42327de80484f4d6fa76f6893a955fb5c 100644 (file)
@@ -4,6 +4,8 @@
  *
  * Copyright (c) 2020 Tomasz Duszynski <tomasz.duszynski@octakon.com>
  */
+
+#include <linux/bitfield.h>
 #include <linux/bits.h>
 #include <linux/cleanup.h>
 #include <linux/completion.h>
 #define SCD30_TEMP_OFFSET_MAX 655360
 #define SCD30_EXTRA_TIMEOUT_PER_S 250
 
+/* Floating point arithmetic macros */
+#define SCD30_FLOAT_MANTISSA_MSK GENMASK(22, 0)
+#define SCD30_FLOAT_EXP_MSK GENMASK(30, 23)
+#define SCD30_FLOAT_SIGN_MSK BIT(31)
+
 enum {
        SCD30_CONC,
        SCD30_TEMP,
@@ -89,10 +96,14 @@ static int scd30_reset(struct scd30_state *state)
 /* simplified float to fixed point conversion with a scaling factor of 0.01 */
 static int scd30_float_to_fp(int float32)
 {
-       int fraction, shift,
-           mantissa = float32 & GENMASK(22, 0),
-           sign = (float32 & BIT(31)) ? -1 : 1,
-           exp = (float32 & ~BIT(31)) >> 23;
+       int fraction, shift, sign;
+       int mantissa = FIELD_GET(SCD30_FLOAT_MANTISSA_MSK, float32);
+       int exp = FIELD_GET(SCD30_FLOAT_EXP_MSK, float32);
+
+       if (float32 & SCD30_FLOAT_SIGN_MSK)
+               sign = -1;
+       else
+               sign = 1;
 
        /* special case 0 */
        if (!exp && !mantissa)