From: Andrzej Zaborowski Date: Mon, 2 Apr 2007 17:15:00 +0000 (-0400) Subject: SPI: Add TSC2102 main SPI driver X-Git-Tag: v2.6.22-omap1~72^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19198c792cfb643520ea7e259a0aa87c91135e0f;p=pandora-kernel.git SPI: Add TSC2102 main SPI driver This adds a driver for the TSC2102 chip by Texas Instruments. This driver is responsible for all communication with the chip and doesn't export anything for user-space, but for other drivers controlling devices connected to the chip. Signed-off-by: Andrzej Zaborowski --- diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 8139f0c9575b..9daa4bb76d3f 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -191,6 +191,13 @@ config SPI_TSC2101 At the moment it provides basic register read / write interface as well as a way to enable the MCLK clock. +config SPI_TSC2102 + depends on SPI_MASTER + tristate "TSC2102 codec support" + ---help--- + Say Y here if you want support for the TSC2102 chip. It + will be needed for the touchscreen driver on some boards. + config SPI_SPIDEV tristate "User mode SPI device driver support" depends on SPI_MASTER && EXPERIMENTAL diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index d87d100103cf..d44d6516d299 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -30,6 +30,7 @@ obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx.o obj-$(CONFIG_SPI_AT25) += at25.o obj-$(CONFIG_SPI_SPIDEV) += spidev.o obj-$(CONFIG_SPI_TSC2101) += tsc2101.o +obj-$(CONFIG_SPI_TSC2102) += tsc2102.o # ... add above this line ... # SPI slave controller drivers (upstream link) Reading git-diff-tree failed