mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
aae4d85647
Adds into 4.19 backported kernel module from 5.1 for Sensirion SPS30 particulate matter sensor, for kernel 5.4 backported dependency fix. Signed-off-by: Petr Štetiar <ynezz@true.cz>
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
From 78b75ab3f8c9dfac563b81105a1b838ec37a940e Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
|
|
Date: Sun, 13 Oct 2019 10:55:15 +0100
|
|
Subject: [PATCH] iio: chemical: sps30: Explicity truncate constant by masking
|
|
|
|
When breaking up a constant to write to two 8 bit registers
|
|
it isn't obvious to sparse that it was intentional.
|
|
|
|
CHECK drivers/iio/chemical/sps30.c
|
|
drivers/iio/chemical/sps30.c:120:30: warning: cast truncates bits from constant value (8004 becomes 4)
|
|
|
|
So in the interests of minimising noisy warnings, let us add
|
|
a mask.
|
|
|
|
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
|
|
Acked-by: Tomasz Duszynski <tduszyns@gmail.com>
|
|
---
|
|
drivers/iio/chemical/sps30.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/iio/chemical/sps30.c b/drivers/iio/chemical/sps30.c
|
|
index edbb956e81e8..acb9f8ecbb3d 100644
|
|
--- a/drivers/iio/chemical/sps30.c
|
|
+++ b/drivers/iio/chemical/sps30.c
|
|
@@ -117,7 +117,7 @@ static int sps30_do_cmd(struct sps30_state *state, u16 cmd, u8 *data, int size)
|
|
break;
|
|
case SPS30_READ_AUTO_CLEANING_PERIOD:
|
|
buf[0] = SPS30_AUTO_CLEANING_PERIOD >> 8;
|
|
- buf[1] = (u8)SPS30_AUTO_CLEANING_PERIOD;
|
|
+ buf[1] = (u8)(SPS30_AUTO_CLEANING_PERIOD & 0xff);
|
|
/* fall through */
|
|
case SPS30_READ_DATA_READY_FLAG:
|
|
case SPS30_READ_DATA:
|