hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/drivers/media/cec/Kconfig
....@@ -1,12 +1,39 @@
1
+# SPDX-License-Identifier: GPL-2.0-only
2
+config CEC_CORE
3
+ tristate
4
+
5
+config CEC_NOTIFIER
6
+ bool
7
+
8
+config CEC_PIN
9
+ bool
10
+
111 config MEDIA_CEC_RC
212 bool "HDMI CEC RC integration"
313 depends on CEC_CORE && RC_CORE
414 depends on CEC_CORE=m || RC_CORE=y
5
- ---help---
15
+ help
616 Pass on CEC remote control messages to the RC framework.
717
818 config CEC_PIN_ERROR_INJ
919 bool "Enable CEC error injection support"
1020 depends on CEC_PIN && DEBUG_FS
11
- ---help---
21
+ help
1222 This option enables CEC error injection using debugfs.
23
+
24
+menuconfig 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
+
35
+if MEDIA_CEC_SUPPORT
36
+source "drivers/media/cec/i2c/Kconfig"
37
+source "drivers/media/cec/platform/Kconfig"
38
+source "drivers/media/cec/usb/Kconfig"
39
+endif