mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
88ae600d58
A dummy driver that performs a series of requests that are often mis- handled by host drivers. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
15 lines
258 B
Makefile
15 lines
258 B
Makefile
#
|
|
# Makefile for MMC/SD card drivers
|
|
#
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
|
|
mmc_block-objs := block.o queue.o
|
|
obj-$(CONFIG_MMC_TEST) += mmc_test.o
|
|
|
|
obj-$(CONFIG_SDIO_UART) += sdio_uart.o
|
|
|