Cleanup clock module a bit and replace last users of __cpm_*
[oweals/openwrt.git] / target / linux / xburst / patches-2.6.32 / 101-mmc.patch
1 From 146308ee673df13fafe40aaddc799e9ad58e6ecb Mon Sep 17 00:00:00 2001
2 From: Lars-Peter Clausen <lars@metafoo.de>
3 Date: Mon, 11 Jan 2010 04:29:42 +0100
4 Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/101-mmc.patch
5
6 ---
7  drivers/mmc/host/Kconfig  |    9 +++++++++
8  drivers/mmc/host/Makefile |    1 +
9  2 files changed, 10 insertions(+), 0 deletions(-)
10
11 diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
12 index 432ae83..16e0cb9 100644
13 --- a/drivers/mmc/host/Kconfig
14 +++ b/drivers/mmc/host/Kconfig
15 @@ -66,6 +66,15 @@ config MMC_RICOH_MMC
16           useless. It is safe to select this driver even if you don't
17           have a Ricoh based card reader.
18  
19 +config MMC_JZ
20 +       tristate "JZ SD/Multimedia Card Interface support"
21 +       depends on SOC_JZ4720 || SOC_JZ4740
22 +       help
23 +         This selects the Ingenic JZ4720/JZ4740 SD/Multimedia card Interface.
24 +         If you have abIngenic platform with a Multimedia Card slot,
25 +         say Y or M here.
26 +
27 +         If unsure, say N.
28  
29           To compile this driver as a module, choose M here:
30           the module will be called ricoh_mmc.
31 diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile
32 index abcb040..b5cbeb5 100644
33 --- a/drivers/mmc/host/Makefile
34 +++ b/drivers/mmc/host/Makefile
35 @@ -6,6 +6,7 @@ ifeq ($(CONFIG_MMC_DEBUG),y)
36         EXTRA_CFLAGS            += -DDEBUG
37  endif
38  
39 +obj-$(CONFIG_MMC_JZ)           += jz_mmc.o
40  obj-$(CONFIG_MMC_ARMMMCI)      += mmci.o
41  obj-$(CONFIG_MMC_PXA)          += pxamci.o
42  obj-$(CONFIG_MMC_IMX)          += imxmmc.o
43 -- 
44 1.5.6.5
45