diff options
author | Wu, Bryan <bryan.wu@analog.com> | 2007-05-06 17:50:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:12:58 -0400 |
commit | a5f6abd4f7558fea97bc4021fd0eb7dcc5d16a77 (patch) | |
tree | d4e8734dd087711e46074846e481457953685586 /drivers/spi/Makefile | |
parent | 8cc75c9a1498913d668b6d3559940c6837cee8bf (diff) |
Blackfin: blackfin on-chip SPI controller driver
This patch implements the driver necessary use the Analog Devices Blackfin
processor's SPI Port.
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/spi/Makefile')
-rw-r--r-- | drivers/spi/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index 3c280ad89202..a95ade857a2f 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile | |||
@@ -11,8 +11,9 @@ endif | |||
11 | obj-$(CONFIG_SPI_MASTER) += spi.o | 11 | obj-$(CONFIG_SPI_MASTER) += spi.o |
12 | 12 | ||
13 | # SPI master controller drivers (bus) | 13 | # SPI master controller drivers (bus) |
14 | obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o | ||
15 | obj-$(CONFIG_SPI_ATMEL) += atmel_spi.o | 14 | obj-$(CONFIG_SPI_ATMEL) += atmel_spi.o |
15 | obj-$(CONFIG_SPI_BFIN) += spi_bfin5xx.o | ||
16 | obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o | ||
16 | obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o | 17 | obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o |
17 | obj-$(CONFIG_SPI_IMX) += spi_imx.o | 18 | obj-$(CONFIG_SPI_IMX) += spi_imx.o |
18 | obj-$(CONFIG_SPI_PXA2XX) += pxa2xx_spi.o | 19 | obj-$(CONFIG_SPI_PXA2XX) += pxa2xx_spi.o |