1# 2# Makefile for kernel SPI drivers. 3# 4 5ifeq ($(CONFIG_SPI_DEBUG),y) 6EXTRA_CFLAGS += -DDEBUG 7endif 8 9# small core, mostly translating board-specific 10# config declarations into driver model code 11obj-$(CONFIG_SPI_MASTER) += spi.o 12 13# SPI master controller drivers (bus) 14obj-$(CONFIG_SPI_ATMEL) += atmel_spi.o 15obj-$(CONFIG_SPI_BFIN) += spi_bfin5xx.o 16obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o 17obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o 18obj-$(CONFIG_SPI_IMX) += spi_imx.o 19obj-$(CONFIG_SPI_PXA2XX) += pxa2xx_spi.o 20obj-$(CONFIG_SPI_OMAP_UWIRE) += omap_uwire.o 21obj-$(CONFIG_SPI_MPC83xx) += spi_mpc83xx.o 22obj-$(CONFIG_SPI_S3C24XX_GPIO) += spi_s3c24xx_gpio.o 23obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx.o 24# ... add above this line ... 25 26# SPI protocol drivers (device/link on bus) 27obj-$(CONFIG_SPI_AT25) += at25.o 28# ... add above this line ... 29 30# SPI slave controller drivers (upstream link) 31# ... add above this line ... 32 33# SPI slave drivers (protocol for that link) 34# ... add above this line ... 35