diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-08-01 16:56:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-08-01 16:56:36 +0000 |
commit | 85119470d2e01c425aa40773e406d11b8375593d (patch) | |
tree | bedf450f4de1858297d99b2d7e86841a4aae4788 /target/linux/brcm63xx/patches-2.6.30/050-spi.patch | |
parent | 6e65f0080d362fb47b780cfa36dfcae319feeb2b (diff) | |
download | upstream-85119470d2e01c425aa40773e406d11b8375593d.tar.gz upstream-85119470d2e01c425aa40773e406d11b8375593d.tar.bz2 upstream-85119470d2e01c425aa40773e406d11b8375593d.zip |
add experimental support for 2.6.30.4
SVN-Revision: 17081
Diffstat (limited to 'target/linux/brcm63xx/patches-2.6.30/050-spi.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-2.6.30/050-spi.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-2.6.30/050-spi.patch b/target/linux/brcm63xx/patches-2.6.30/050-spi.patch new file mode 100644 index 0000000000..64eb6a7d21 --- /dev/null +++ b/target/linux/brcm63xx/patches-2.6.30/050-spi.patch @@ -0,0 +1,26 @@ +--- a/drivers/spi/Kconfig ++++ b/drivers/spi/Kconfig +@@ -229,6 +229,13 @@ config SPI_XILINX + See the "OPB Serial Peripheral Interface (SPI) (v1.00e)" + Product Specification document (DS464) for hardware details. + ++config SPI_BCM63XX ++ tristate "Broadcom BCM63xx SPI controller" ++ depends on BCM63XX ++ select SPI_BITBANG ++ help ++ SPI driver for the Broadcom BCM63xx SPI controller. ++ + # + # Add new SPI master controllers in alphabetical order above this line + # +--- a/drivers/spi/Makefile ++++ b/drivers/spi/Makefile +@@ -31,6 +31,7 @@ obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24x + obj-$(CONFIG_SPI_TXX9) += spi_txx9.o + obj-$(CONFIG_SPI_XILINX) += xilinx_spi.o + obj-$(CONFIG_SPI_SH_SCI) += spi_sh_sci.o ++obj-$(CONFIG_SPI_BCM63XX) += bcm63xx_spi.o + # ... add above this line ... + + # SPI protocol drivers (device/link on bus) |