[openwrt/openwrt] kernel: kmod-iio-sps30: Add I2C driver
LEDE Commits
lede-commits at lists.infradead.org
Wed Aug 10 15:52:12 PDT 2022
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/c281edb6ac1ce19968bd912e9291144a1c4d2183
commit c281edb6ac1ce19968bd912e9291144a1c4d2183
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sun Aug 7 15:22:42 2022 +0200
kernel: kmod-iio-sps30: Add I2C driver
The sps30.ko driver was split into a main sps30.ko driver and a
sps30_i2c.ko driver for the I2C interface with kernel 5.14. Add the
sps30_i2c.ko module to the package too.
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
package/kernel/linux/modules/iio.mk | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/package/kernel/linux/modules/iio.mk b/package/kernel/linux/modules/iio.mk
index 6a2e040377..a4b2ee93e9 100644
--- a/package/kernel/linux/modules/iio.mk
+++ b/package/kernel/linux/modules/iio.mk
@@ -431,9 +431,13 @@ define KernelPackage/iio-sps30
SUBMENU:=$(IIO_MENU)
DEPENDS:=+kmod-i2c-core +kmod-iio-core +kmod-industrialio-triggered-buffer +kmod-lib-crc8
TITLE:=Sensirion SPS30 particulate matter sensor
- KCONFIG:=CONFIG_SPS30
- FILES:=$(LINUX_DIR)/drivers/iio/chemical/sps30.ko
- AUTOLOAD:=$(call AutoProbe,sps30)
+ KCONFIG:= \
+ CONFIG_SPS30 \
+ CONFIG_SPS30_I2C
+ FILES:= \
+ $(LINUX_DIR)/drivers/iio/chemical/sps30.ko \
+ $(LINUX_DIR)/drivers/iio/chemical/sps30_i2c.ko at ge5.14
+ AUTOLOAD:=$(call AutoProbe,sps30 sps30_i2c)
endef
define KernelPackage/iio-sps30/description
More information about the lede-commits
mailing list