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