Makefile 708 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#
# 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)
14
obj-$(CONFIG_SPI_BITBANG)		+= spi_bitbang.o
D
David Brownell 已提交
15
obj-$(CONFIG_SPI_BUTTERFLY)		+= spi_butterfly.o
16
obj-$(CONFIG_SPI_PXA2XX)		+= pxa2xx_spi.o
17
obj-$(CONFIG_SPI_MPC83xx)		+= spi_mpc83xx.o
18 19 20 21 22 23 24 25 26 27
# 	... 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 ...