Kconfig 649 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # MemoryStick subsystem configuration
  4. #
  5. menuconfig MEMSTICK
  6. tristate "Sony MemoryStick card support"
  7. help
  8. Sony MemoryStick is a proprietary storage/extension card protocol.
  9. If you want MemoryStick support, you should say Y here and also
  10. to the specific driver for your MemoryStick interface.
  11. if MEMSTICK
  12. config MEMSTICK_DEBUG
  13. bool "MemoryStick debugging"
  14. help
  15. This is an option for use by developers; most people should
  16. say N here. This enables MemoryStick core and driver debugging.
  17. source "drivers/memstick/core/Kconfig"
  18. source "drivers/memstick/host/Kconfig"
  19. endif # MEMSTICK