mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
3db3562bc6
Murata IRS-D200 is a PIR sensor for human detection. It has support for raw data measurements and detection event notification. Add a driver with support for triggered buffer and events. Map the various settings to the `iio` framework, e.g. threshold values, sampling frequency, filter frequencies etc. Signed-off-by: Waqar Hameed <waqar.hameed@axis.com> Link: https://lore.kernel.org/r/d218a1bc75402b5ebd6e12a563f7315f83fe966c.1689753076.git.waqar.hameed@axis.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
25 lines
795 B
Makefile
25 lines
795 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for IIO proximity sensors
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_AS3935) += as3935.o
|
|
obj-$(CONFIG_CROS_EC_MKBP_PROXIMITY) += cros_ec_mkbp_proximity.o
|
|
obj-$(CONFIG_IRSD200) += irsd200.o
|
|
obj-$(CONFIG_ISL29501) += isl29501.o
|
|
obj-$(CONFIG_LIDAR_LITE_V2) += pulsedlight-lidar-lite-v2.o
|
|
obj-$(CONFIG_MB1232) += mb1232.o
|
|
obj-$(CONFIG_PING) += ping.o
|
|
obj-$(CONFIG_RFD77402) += rfd77402.o
|
|
obj-$(CONFIG_SRF04) += srf04.o
|
|
obj-$(CONFIG_SRF08) += srf08.o
|
|
obj-$(CONFIG_SX9310) += sx9310.o
|
|
obj-$(CONFIG_SX9324) += sx9324.o
|
|
obj-$(CONFIG_SX9360) += sx9360.o
|
|
obj-$(CONFIG_SX_COMMON) += sx_common.o
|
|
obj-$(CONFIG_SX9500) += sx9500.o
|
|
obj-$(CONFIG_VCNL3020) += vcnl3020.o
|
|
obj-$(CONFIG_VL53L0X_I2C) += vl53l0x-i2c.o
|
|
|