Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. if USB && MEDIA_SUPPORT
  3. menuconfig MEDIA_USB_SUPPORT
  4. bool "Media USB Adapters"
  5. help
  6. Enable media drivers for USB bus.
  7. If you have such devices, say Y.
  8. if MEDIA_USB_SUPPORT
  9. if MEDIA_CAMERA_SUPPORT
  10. comment "Webcam devices"
  11. source "drivers/media/usb/gspca/Kconfig"
  12. source "drivers/media/usb/pwc/Kconfig"
  13. source "drivers/media/usb/s2255/Kconfig"
  14. source "drivers/media/usb/usbtv/Kconfig"
  15. source "drivers/media/usb/uvc/Kconfig"
  16. endif
  17. if MEDIA_ANALOG_TV_SUPPORT
  18. comment "Analog TV USB devices"
  19. source "drivers/media/usb/go7007/Kconfig"
  20. source "drivers/media/usb/hdpvr/Kconfig"
  21. source "drivers/media/usb/pvrusb2/Kconfig"
  22. source "drivers/media/usb/stk1160/Kconfig"
  23. endif
  24. if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
  25. comment "Analog/digital TV USB devices"
  26. source "drivers/media/usb/au0828/Kconfig"
  27. source "drivers/media/usb/cx231xx/Kconfig"
  28. endif
  29. if I2C && MEDIA_DIGITAL_TV_SUPPORT
  30. comment "Digital TV USB devices"
  31. source "drivers/media/usb/as102/Kconfig"
  32. source "drivers/media/usb/b2c2/Kconfig"
  33. source "drivers/media/usb/dvb-usb-v2/Kconfig"
  34. source "drivers/media/usb/dvb-usb/Kconfig"
  35. source "drivers/media/usb/siano/Kconfig"
  36. source "drivers/media/usb/ttusb-budget/Kconfig"
  37. source "drivers/media/usb/ttusb-dec/Kconfig"
  38. endif
  39. if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT)
  40. comment "Webcam, TV (analog/digital) USB devices"
  41. source "drivers/media/usb/em28xx/Kconfig"
  42. endif
  43. if MEDIA_SDR_SUPPORT
  44. comment "Software defined radio USB devices"
  45. source "drivers/media/usb/airspy/Kconfig"
  46. source "drivers/media/usb/hackrf/Kconfig"
  47. source "drivers/media/usb/msi2500/Kconfig"
  48. endif
  49. endif #MEDIA_USB_SUPPORT
  50. endif #USB