Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eba499d3 authored by Naveen Kumar Gaddipati's avatar Naveen Kumar Gaddipati Committed by Greg Kroah-Hartman
Browse files

Staging: add Synaptics RMI4 touchpad driver support



Added the Synaptics RMI4 touchpad driver support.

Acked-by: default avatarLinus Walleij <linus.walleij@stericsson.com>
Signed-off-by: default avatarNaveen Kumar Gaddipati <naveen.gaddipati@stericsson.com>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Christopher Heiny <cheiny@synaptics.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 78fd115e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -177,5 +177,7 @@ source "drivers/staging/speakup/Kconfig"

source "drivers/staging/cptm1217/Kconfig"

source "drivers/staging/ste_rmi4/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -69,3 +69,4 @@ obj-$(CONFIG_FT1000) += ft1000/
obj-$(CONFIG_SND_INTEL_SST)		+= intel_sst/
obj-$(CONFIG_SPEAKUP)	+= speakup/
obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217)	+= cptm1217/
obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4)	+= ste_rmi4/
+9 −0
Original line number Diff line number Diff line
config TOUCHSCREEN_SYNAPTICS_I2C_RMI4
	tristate "Synaptics i2c rmi4 touchscreen"
	depends on I2C
	help
	  Say Y here if you have a Synaptics RMI4 and
	  want to enable support for the built-in touchscreen.

	  To compile this driver as a module, choose M here: the
	  module will be called synaptics_rmi4_ts.
+4 −0
Original line number Diff line number Diff line
#
# Makefile for the RMI4 touchscreen driver.
#
obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4) += synaptics_i2c_rmi4.o
+7 −0
Original line number Diff line number Diff line
TODO
----

Wait for the official upstream synaptics rmi4 clearpad drivers as promised over the past few months
Merge any device support needed from this driver into it
Delete this driver
Loading