Kconfig 530 B

1234567891011121314151617181920212223242526
  1. #
  2. # MMC subsystem configuration
  3. #
  4. menu "MMC/SD Card support"
  5. config MMC
  6. tristate "MMC support"
  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. source "drivers/mmc/card/Kconfig"
  18. source "drivers/mmc/host/Kconfig"
  19. endmenu