Files
linux-apfs/drivers/spi/Makefile
T

26 lines
622 B
Makefile
Raw Normal View History

2006-01-08 13:34:19 -08:00
#
# 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)
2006-01-08 13:34:26 -08:00
obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o
2006-01-08 13:34:29 -08:00
obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o
2006-01-08 13:34:19 -08:00
# ... add above this line ...
# SPI protocol drivers (device/link on bus)
# ... add above this line ...
# SPI slave controller drivers (upstream link)
# ... add above this line ...
# SPI slave drivers (protocol for that link)
# ... add above this line ...