mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 23:21:31 +00:00
9e4c596bfd
RMI4 F3A supports the touchpad GPIO function, it's designed to support more GPIOs and used on newer touchpads. This patch adds support of the touchpad buttons. Signed-off-by: Vincent Huang <vincent.huang@tw.synaptics.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Tested-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Andrew Duggan <aduggan@synaptics.com> Link: https://lore.kernel.org/r/20200930094147.635556-3-vincent.huang@tw.synaptics.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
21 lines
658 B
Makefile
21 lines
658 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_RMI4_CORE) += rmi_core.o
|
|
rmi_core-y := rmi_bus.o rmi_driver.o rmi_f01.o
|
|
|
|
rmi_core-$(CONFIG_RMI4_2D_SENSOR) += rmi_2d_sensor.o
|
|
|
|
# Function drivers
|
|
rmi_core-$(CONFIG_RMI4_F03) += rmi_f03.o
|
|
rmi_core-$(CONFIG_RMI4_F11) += rmi_f11.o
|
|
rmi_core-$(CONFIG_RMI4_F12) += rmi_f12.o
|
|
rmi_core-$(CONFIG_RMI4_F30) += rmi_f30.o
|
|
rmi_core-$(CONFIG_RMI4_F34) += rmi_f34.o rmi_f34v7.o
|
|
rmi_core-$(CONFIG_RMI4_F3A) += rmi_f3a.o
|
|
rmi_core-$(CONFIG_RMI4_F54) += rmi_f54.o
|
|
rmi_core-$(CONFIG_RMI4_F55) += rmi_f55.o
|
|
|
|
# Transports
|
|
obj-$(CONFIG_RMI4_I2C) += rmi_i2c.o
|
|
obj-$(CONFIG_RMI4_SPI) += rmi_spi.o
|
|
obj-$(CONFIG_RMI4_SMB) += rmi_smbus.o
|