diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-07-28 10:56:25 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-07-28 10:56:25 +0000 |
commit | a5c4fa95265639eee73efbc1a2aa94c513ae5b81 (patch) | |
tree | dd5aefd9f2874d7bed7f360cb63b5fc080c12670 /target/linux/ramips/patches-2.6.39 | |
parent | 5ce157d053852705977d08e8983717e954ec74ee (diff) | |
download | upstream-a5c4fa95265639eee73efbc1a2aa94c513ae5b81.tar.gz upstream-a5c4fa95265639eee73efbc1a2aa94c513ae5b81.tar.bz2 upstream-a5c4fa95265639eee73efbc1a2aa94c513ae5b81.zip |
ramips: add SPI controller driver
Based on a patch by Sergiy <piratfm@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27809 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/patches-2.6.39')
-rw-r--r-- | target/linux/ramips/patches-2.6.39/105-ramips-spi-driver.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-2.6.39/105-ramips-spi-driver.patch b/target/linux/ramips/patches-2.6.39/105-ramips-spi-driver.patch new file mode 100644 index 0000000000..1ca174da48 --- /dev/null +++ b/target/linux/ramips/patches-2.6.39/105-ramips-spi-driver.patch @@ -0,0 +1,25 @@ +--- a/drivers/spi/Kconfig ++++ b/drivers/spi/Kconfig +@@ -283,6 +283,12 @@ config SPI_PXA2XX + The driver can be configured to use any SSP port and additional + documentation can be found a Documentation/spi/pxa2xx. + ++config SPI_RAMIPS ++ tristate "Ralink RT288x/RT305x SPI Controller" ++ depends on (SOC_RT288X || SOC_RT305X) && SPI_MASTER ++ help ++ This selects a driver for the Ralink RT288x/RT305x SPI Controller. ++ + config SPI_S3C24XX + tristate "Samsung S3C24XX series SPI" + depends on ARCH_S3C2410 && EXPERIMENTAL +--- a/drivers/spi/Makefile ++++ b/drivers/spi/Makefile +@@ -37,6 +37,7 @@ obj-$(CONFIG_SPI_FSL_LIB) += spi_fsl_li + obj-$(CONFIG_SPI_FSL_ESPI) += spi_fsl_espi.o + obj-$(CONFIG_SPI_FSL_SPI) += spi_fsl_spi.o + obj-$(CONFIG_SPI_PPC4xx) += spi_ppc4xx.o ++obj-$(CONFIG_SPI_RAMIPS) += ramips_spi.o + obj-$(CONFIG_SPI_S3C24XX_GPIO) += spi_s3c24xx_gpio.o + obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx_hw.o + obj-$(CONFIG_SPI_S3C64XX) += spi_s3c64xx.o |