Kconfig 840 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # MMC subsystem configuration
  3. #
  4. menuconfig MMC
  5. tristate "MMC/SD/SDIO card support"
  6. depends on HAS_IOMEM
  7. help
  8. This selects MultiMediaCard, Secure Digital and Secure
  9. Digital I/O support.
  10. If you want MMC/SD/SDIO support, you should say Y here and
  11. also to your specific host controller driver.
  12. config MMC_DEBUG
  13. bool "MMC debugging"
  14. depends on MMC != n
  15. help
  16. This is an option for use by developers; most people should
  17. say N here. This enables MMC core and driver debugging.
  18. config MMC_PERF_PROFILING
  19. bool "MMC performance profiling"
  20. depends on MMC != n
  21. default n
  22. help
  23. If you say Y here, support will be added for collecting
  24. performance numbers at the MMC Queue and Host layers.
  25. if MMC
  26. source "drivers/mmc/core/Kconfig"
  27. source "drivers/mmc/card/Kconfig"
  28. source "drivers/mmc/host/Kconfig"
  29. endif # MMC