mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-11 22:36:40 +07:00
8d99758dee
Add the transport driver for devices using RMI4 over SPI. Signed-off-by: Andrew Duggan <aduggan@synaptics.com> Tested-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Tested-by: Linus Walleij <linus.walleij@linaro.org> Tested-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
14 lines
368 B
Makefile
14 lines
368 B
Makefile
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_F11) += rmi_f11.o
|
|
rmi_core-$(CONFIG_RMI4_F12) += rmi_f12.o
|
|
rmi_core-$(CONFIG_RMI4_F30) += rmi_f30.o
|
|
|
|
# Transports
|
|
obj-$(CONFIG_RMI4_I2C) += rmi_i2c.o
|
|
obj-$(CONFIG_RMI4_SPI) += rmi_spi.o
|