mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-12-30 14:26:34 +01:00
Hardware based SPI driver for Samsung S3C24XX SoC systems Signed-off-by: Ben Dooks <ben-linux@fluff.org> Cc: David Brownell <david-b@pacbell.net> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
806 B
806 B
Makefile for kernel SPI drivers.
ifeq ($(CONFIG_SPI_DEBUG),y) EXTRA_CFLAGS += -DDEBUG endif
small core, mostly translating board-specific
config declarations into driver model code
obj-$(CONFIG_SPI_MASTER) += spi.o
SPI master controller drivers (bus)
obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o obj-$(CONFIG_SPI_PXA2XX) += pxa2xx_spi.o obj-$(CONFIG_SPI_MPC83xx) += spi_mpc83xx.o obj-$(CONFIG_SPI_S3C24XX_GPIO) += spi_s3c24xx_gpio.o obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx.o