thermal/drivers/imx8mm_thermal: Use GENMASK() when appropriate
authorMarcus Folkesson <marcus.folkesson@gmail.com>
Fri, 14 Oct 2022 08:16:20 +0000 (10:16 +0200)
committerDaniel Lezcano <daniel.lezcano@kernel.org>
Wed, 14 Dec 2022 14:25:39 +0000 (15:25 +0100)
GENMASK() is preferred to use for bitmasks.

Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
Link: https://lore.kernel.org/r/20221014081620.1599511-1-marcus.folkesson@gmail.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/thermal/imx8mm_thermal.c

index e2c2673025a7ac45754574d2d824fa84fed1c37d..68608d8e5e29f217606cccde3ef84fb21af14451 100644 (file)
@@ -23,8 +23,8 @@
 
 #define TER_ADC_PD             BIT(30)
 #define TER_EN                 BIT(31)
-#define TRITSR_TEMP0_VAL_MASK  0xff
-#define TRITSR_TEMP1_VAL_MASK  0xff0000
+#define TRITSR_TEMP0_VAL_MASK  GENMASK(7, 0)
+#define TRITSR_TEMP1_VAL_MASK  GENMASK(23, 16)
 
 #define PROBE_SEL_ALL          GENMASK(31, 30)