mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
07b241262d
AW96103 is a low power consumption capacitive touch and proximity controller. Each channel can be independently config as sensor input, shield output. Channel Information: aw96103: 3-channel aw96105: 5-channel Signed-off-by: shuaijie wang <wangshuaijie@awinic.com> Link: https://patch.msgid.link/20240827080229.1431784-3-wangshuaijie@awinic.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
27 lines
867 B
Makefile
27 lines
867 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_HX9023S) += hx9023s.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
|
|
obj-$(CONFIG_AW96103) += aw96103.o
|
|
|