linux/drivers/media/cec/Kconfig
<<
>>
Prefs
   1# SPDX-License-Identifier: GPL-2.0-only
   2config CEC_CORE
   3        tristate
   4
   5config CEC_NOTIFIER
   6        bool
   7
   8config CEC_PIN
   9        bool
  10
  11config MEDIA_CEC_RC
  12        bool "HDMI CEC RC integration"
  13        depends on CEC_CORE && RC_CORE
  14        depends on CEC_CORE=m || RC_CORE=y
  15        help
  16          Pass on CEC remote control messages to the RC framework.
  17
  18config CEC_PIN_ERROR_INJ
  19        bool "Enable CEC error injection support"
  20        depends on CEC_PIN && DEBUG_FS
  21        help
  22          This option enables CEC error injection using debugfs.
  23
  24menuconfig MEDIA_CEC_SUPPORT
  25        bool
  26        prompt "HDMI CEC drivers"
  27        default y if MEDIA_SUPPORT && !MEDIA_SUPPORT_FILTER
  28        help
  29          Enable support for HDMI CEC (Consumer Electronics Control),
  30          which is an optional HDMI feature.
  31
  32          Say Y when you have an HDMI receiver, transmitter or a USB CEC
  33          adapter that supports HDMI CEC.
  34
  35if MEDIA_CEC_SUPPORT
  36source "drivers/media/cec/platform/Kconfig"
  37source "drivers/media/cec/usb/Kconfig"
  38endif
  39