Kconfig 561 B

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