1#
2# MMC subsystem configuration
3#
4
5menuconfig MMC
6	tristate "MMC/SD card support"
7	depends on HAS_IOMEM
8	help
9	  MMC is the "multi-media card" bus protocol.
10
11	  If you want MMC support, you should say Y here and also
12	  to the specific driver for your MMC interface.
13
14config MMC_DEBUG
15	bool "MMC debugging"
16	depends on MMC != n
17	help
18	  This is an option for use by developers; most people should
19	  say N here.  This enables MMC core and driver debugging.
20
21if MMC
22
23source "drivers/mmc/core/Kconfig"
24
25source "drivers/mmc/card/Kconfig"
26
27source "drivers/mmc/host/Kconfig"
28
29endif # MMC
30