2009-08-20 12:38:17 +03:00
|
|
|
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
|
2009-09-21 19:17:14 +03:00
|
|
|
index b4e1c22..a2e6ac1 100644
|
2009-08-20 12:38:17 +03:00
|
|
|
--- a/drivers/mmc/host/Kconfig
|
|
|
|
+++ b/drivers/mmc/host/Kconfig
|
|
|
|
@@ -66,6 +66,15 @@ config MMC_RICOH_MMC
|
|
|
|
useless. It is safe to select this driver even if you don't
|
|
|
|
have a Ricoh based card reader.
|
|
|
|
|
|
|
|
+config MMC_JZ
|
|
|
|
+ tristate "JZ SD/Multimedia Card Interface support"
|
|
|
|
+ depends on SOC_JZ4720 || SOC_JZ4740
|
|
|
|
+ help
|
|
|
|
+ This selects the Ingenic JZ4720/JZ4740 SD/Multimedia card Interface.
|
|
|
|
+ If you have abIngenic platform with a Multimedia Card slot,
|
|
|
|
+ say Y or M here.
|
|
|
|
+
|
|
|
|
+ If unsure, say N.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here:
|
|
|
|
the module will be called ricoh_mmc.
|
|
|
|
diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile
|
2009-09-21 19:17:14 +03:00
|
|
|
index 4cce976..a3d336a 100644
|
2009-08-20 12:38:17 +03:00
|
|
|
--- a/drivers/mmc/host/Makefile
|
|
|
|
+++ b/drivers/mmc/host/Makefile
|
|
|
|
@@ -6,6 +6,7 @@ ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
|
|
endif
|
|
|
|
|
|
|
|
+obj-$(CONFIG_MMC_JZ) += jz_mmc.o
|
|
|
|
obj-$(CONFIG_MMC_ARMMMCI) += mmci.o
|
|
|
|
obj-$(CONFIG_MMC_PXA) += pxamci.o
|
|
|
|
obj-$(CONFIG_MMC_IMX) += imxmmc.o
|