3a762dbd53
Function 54 implements access to various RMI4 diagnostic features. This patch adds support for retrieving this data. It registers a V4L2 device to output the data to user space. Signed-off-by: Nick Dyer <nick@shmanahar.org> Tested-by: Andrew Duggan <aduggan@synaptics.com> Tested-by: Chris Healy <cphealy@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
15 lines
409 B
Makefile
15 lines
409 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
|
|
rmi_core-$(CONFIG_RMI4_F54) += rmi_f54.o
|
|
|
|
# Transports
|
|
obj-$(CONFIG_RMI4_I2C) += rmi_i2c.o
|
|
obj-$(CONFIG_RMI4_SPI) += rmi_spi.o
|