aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/Makefile
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-02-11 13:57:36 -0500
committerPierre Ossman <drzeus@drzeus.cx>2007-05-01 07:04:17 -0400
commit1c6a0718f0bfdab0d9b7da5f7b74f38a0058c03a (patch)
tree5e7f2a26d5d1782d87c596b40f874c6c0b8b8e1a /drivers/mmc/Makefile
parent98ac2162699f7e9880683cb954891817f20b607c (diff)
mmc: Move host and card drivers to subdirs
Clean up the drivers/mmc directory by moving card and host drivers into subdirectories. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/Makefile')
-rw-r--r--drivers/mmc/Makefile30
1 files changed, 7 insertions, 23 deletions
diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile
index 9ef010a51608..4d2bdfeb8d76 100644
--- a/drivers/mmc/Makefile
+++ b/drivers/mmc/Makefile
@@ -2,32 +2,16 @@
2# Makefile for the kernel mmc device drivers. 2# Makefile for the kernel mmc device drivers.
3# 3#
4 4
5ifeq ($(CONFIG_MMC_DEBUG),y)
6 EXTRA_CFLAGS += -DDEBUG
7endif
8
5# 9#
6# Core 10# Core
7# 11#
8obj-$(CONFIG_MMC) += mmc_core.o 12obj-$(CONFIG_MMC) += mmc_core.o
13mmc_core-y := mmc.o mmc_sysfs.o
9 14
10# 15obj-$(CONFIG_MMC) += card/
11# Media drivers 16obj-$(CONFIG_MMC) += host/
12#
13obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
14mmc_block-objs := block.o queue.o
15 17
16#
17# Host drivers
18#
19obj-$(CONFIG_MMC_ARMMMCI) += mmci.o
20obj-$(CONFIG_MMC_PXA) += pxamci.o
21obj-$(CONFIG_MMC_IMX) += imxmmc.o
22obj-$(CONFIG_MMC_SDHCI) += sdhci.o
23obj-$(CONFIG_MMC_WBSD) += wbsd.o
24obj-$(CONFIG_MMC_AU1X) += au1xmmc.o
25obj-$(CONFIG_MMC_OMAP) += omap.o
26obj-$(CONFIG_MMC_AT91) += at91_mci.o
27obj-$(CONFIG_MMC_TIFM_SD) += tifm_sd.o
28
29mmc_core-y := mmc.o mmc_sysfs.o
30
31ifeq ($(CONFIG_MMC_DEBUG),y)
32EXTRA_CFLAGS += -DDEBUG
33endif