| 1 | --- a/drivers/spi/Kconfig |
| 2 | +++ b/drivers/spi/Kconfig |
| 3 | @@ -68,6 +68,14 @@ config SPI_AR71XX |
| 4 | help |
| 5 | This is the SPI contoller driver for Atheros AR71xx. |
| 6 | |
| 7 | +config SPI_PB44 |
| 8 | + tristate "Atheros PB44 board specific SPI controller" |
| 9 | + depends on SPI_MASTER && AR71XX_MACH_PB44 |
| 10 | + select SPI_BITBANG |
| 11 | + help |
| 12 | + This is a specific SPI controller driver for the Atheros PB44 |
| 13 | + reference board. |
| 14 | + |
| 15 | config SPI_ATMEL |
| 16 | tristate "Atmel SPI Controller" |
| 17 | depends on (ARCH_AT91 || AVR32) |
| 18 | --- a/drivers/spi/Makefile |
| 19 | +++ b/drivers/spi/Makefile |
| 20 | @@ -22,6 +22,7 @@ obj-$(CONFIG_SPI_GPIO) += spi_gpio.o |
| 21 | obj-$(CONFIG_SPI_GPIO_OLD) += spi_gpio_old.o |
| 22 | obj-$(CONFIG_SPI_IMX) += spi_imx.o |
| 23 | obj-$(CONFIG_SPI_LM70_LLP) += spi_lm70llp.o |
| 24 | +obj-$(CONFIG_SPI_PB44) += pb44_spi.o |
| 25 | obj-$(CONFIG_SPI_PXA2XX) += pxa2xx_spi.o |
| 26 | obj-$(CONFIG_SPI_OMAP_UWIRE) += omap_uwire.o |
| 27 | obj-$(CONFIG_SPI_OMAP24XX) += omap2_mcspi.o |
| 28 | |