diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-25 21:28:42 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-25 21:28:42 +0000 |
commit | 5412b6f32e49d2319262c9413125ae11ec4b4544 (patch) | |
tree | 6e2e3b4b19a420e28e56e91bb3c1698a6d76257b /target/linux/ramips/patches-3.8/105-ramips-spi-driver.patch | |
parent | a08646642eb3692b0a4a79d38b54dbbea00587d5 (diff) | |
download | upstream-5412b6f32e49d2319262c9413125ae11ec4b4544.tar.gz upstream-5412b6f32e49d2319262c9413125ae11ec4b4544.tar.bz2 upstream-5412b6f32e49d2319262c9413125ae11ec4b4544.zip |
ramips: add support for 3.8
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35801
Diffstat (limited to 'target/linux/ramips/patches-3.8/105-ramips-spi-driver.patch')
-rw-r--r-- | target/linux/ramips/patches-3.8/105-ramips-spi-driver.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-3.8/105-ramips-spi-driver.patch b/target/linux/ramips/patches-3.8/105-ramips-spi-driver.patch new file mode 100644 index 0000000000..7665ab4b9d --- /dev/null +++ b/target/linux/ramips/patches-3.8/105-ramips-spi-driver.patch @@ -0,0 +1,25 @@ +--- a/drivers/spi/Kconfig ++++ b/drivers/spi/Kconfig +@@ -324,6 +324,12 @@ config SPI_RSPI + help + SPI driver for Renesas RSPI blocks. + ++config SPI_RAMIPS ++ tristate "Ralink RT288x/RT305x/RT3662 SPI Controller" ++ depends on (SOC_RT288X || SOC_RT305X || SOC_RT3883) ++ help ++ This selects a driver for the Ralink RT288x/RT305x SPI Controller. ++ + config SPI_S3C24XX + tristate "Samsung S3C24XX series SPI" + depends on ARCH_S3C24XX && EXPERIMENTAL +--- a/drivers/spi/Makefile ++++ b/drivers/spi/Makefile +@@ -50,6 +50,7 @@ obj-$(CONFIG_SPI_PL022) += spi-pl022.o + obj-$(CONFIG_SPI_PPC4xx) += spi-ppc4xx.o + obj-$(CONFIG_SPI_PXA2XX) += spi-pxa2xx.o + obj-$(CONFIG_SPI_PXA2XX_PCI) += spi-pxa2xx-pci.o ++obj-$(CONFIG_SPI_RAMIPS) += spi-ramips.o + obj-$(CONFIG_SPI_RSPI) += spi-rspi.o + obj-$(CONFIG_SPI_S3C24XX) += spi-s3c24xx-hw.o + spi-s3c24xx-hw-y := spi-s3c24xx.o |