mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
65dbf34393
Patch from Andrew Victor This patch adds support for the MMC/SD card interface on the Atmel AT91RM9200 processor. Original driver was by Nick Randell, but a number of people have subsequently worked on it. It's currently maintained by Malcolm Noyes. Signed-off-by: Andrew Victor <andrew@sanpeople.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
31 lines
536 B
Makefile
31 lines
536 B
Makefile
#
|
|
# Makefile for the kernel mmc device drivers.
|
|
#
|
|
|
|
#
|
|
# Core
|
|
#
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
|
|
#
|
|
# Media drivers
|
|
#
|
|
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
|
|
|
|
#
|
|
# Host drivers
|
|
#
|
|
obj-$(CONFIG_MMC_ARMMMCI) += mmci.o
|
|
obj-$(CONFIG_MMC_PXA) += pxamci.o
|
|
obj-$(CONFIG_MMC_SDHCI) += sdhci.o
|
|
obj-$(CONFIG_MMC_WBSD) += wbsd.o
|
|
obj-$(CONFIG_MMC_AU1X) += au1xmmc.o
|
|
obj-$(CONFIG_MMC_OMAP) += omap.o
|
|
obj-$(CONFIG_MMC_AT91RM9200) += at91_mci.o
|
|
|
|
mmc_core-y := mmc.o mmc_queue.o mmc_sysfs.o
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|