diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-14 13:43:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-14 13:43:26 -0500 |
commit | 61b7efddc5256225099d13185659e9ad9d8abc8a (patch) | |
tree | 7cbfec9c0012b07c7a236a953f5e067304725415 /drivers/spi/Makefile | |
parent | 3e2b32b69308e974cd1167beaf266d3c716e4734 (diff) | |
parent | 2e10c84b9cf0b2d269c5629048d8d6e35eaf6b2b (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/spi-2.6
Diffstat (limited to 'drivers/spi/Makefile')
-rw-r--r-- | drivers/spi/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile new file mode 100644 index 000000000000..c2c87e845abf --- /dev/null +++ b/drivers/spi/Makefile | |||
@@ -0,0 +1,25 @@ | |||
1 | # | ||
2 | # Makefile for kernel SPI drivers. | ||
3 | # | ||
4 | |||
5 | ifeq ($(CONFIG_SPI_DEBUG),y) | ||
6 | EXTRA_CFLAGS += -DDEBUG | ||
7 | endif | ||
8 | |||
9 | # small core, mostly translating board-specific | ||
10 | # config declarations into driver model code | ||
11 | obj-$(CONFIG_SPI_MASTER) += spi.o | ||
12 | |||
13 | # SPI master controller drivers (bus) | ||
14 | obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o | ||
15 | obj-$(CONFIG_SPI_BUTTERFLY) += spi_butterfly.o | ||
16 | # ... add above this line ... | ||
17 | |||
18 | # SPI protocol drivers (device/link on bus) | ||
19 | # ... add above this line ... | ||
20 | |||
21 | # SPI slave controller drivers (upstream link) | ||
22 | # ... add above this line ... | ||
23 | |||
24 | # SPI slave drivers (protocol for that link) | ||
25 | # ... add above this line ... | ||