Commit a4cff8b8 authored by Sreedhara DS's avatar Sreedhara DS Committed by Greg Kroah-Hartman
Browse files

Staging: mid: Intel MID touch screen driver



Touchscreen driver used by intel mid devices. Some clean up by Alan Cox. This
driver is basically ready for upstreaming properly but is tied wrongly to the
SPI layer and needs firmware/SFI changes to fix that.

Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent d7636e0b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -143,5 +143,7 @@ source "drivers/staging/adis16255/Kconfig"

source "drivers/staging/xgifb/Kconfig"

source "drivers/staging/mrst-touchscreen/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -52,3 +52,4 @@ obj-$(CONFIG_CXT1E1) += cxt1e1/
obj-$(CONFIG_TI_ST)		+= ti-st/
obj-$(CONFIG_ADIS16255)		+= adis16255/
obj-$(CONFIG_FB_XGI)		+= xgifb/
obj-$(CONFIG_TOUCHSCREEN_MRSTOUCH)	+= mrst-touchscreen/
+7 −0
Original line number Diff line number Diff line
config TOUCHSCREEN_INTEL_MID
	tristate "Intel MID platform resistive touchscreen"
	depends on INTEL_SCU_IPC
	default y
	help
	  Say Y here if you have a Intel MID based touchscreen
	  If unsure, say N.
+3 −0
Original line number Diff line number Diff line
obj-$(CONFIG_TOUCHSCREEN_INTEL_MID) := intel_mid_touch.o

+2 −0
Original line number Diff line number Diff line
- Move the driver to not think it is SPI (requires fixing some of the SFI
  and firmware side)
Loading