Kconfig 583 B

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