diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2017-07-17 07:48:14 -0400 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2017-07-26 20:24:03 -0400 |
commit | 8f4e01f9f05e460eceed03df7f1b90095727e05a (patch) | |
tree | d9eb623e086c570726887c5237bf5ea7ac224f57 | |
parent | 861b27eca78355aa0a9712612c3ccd7d847a1614 (diff) |
drm/exynos: select CEC_CORE if CEC_NOTIFIER
If the s5p-cec driver is a module and the drm exynos driver is built-in, then
the CEC core will be a module also, causing the CEC notifier to fail (will be
compiled as empty functions).
To prevent this select CEC_CORE if CEC_NOTIFIER is set to ensure the CEC core
is also built into the kernel.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/exynos/Kconfig index 1d185347c64c..305dc3d4ff77 100644 --- a/drivers/gpu/drm/exynos/Kconfig +++ b/drivers/gpu/drm/exynos/Kconfig | |||
@@ -75,6 +75,7 @@ config DRM_EXYNOS_DP | |||
75 | config DRM_EXYNOS_HDMI | 75 | config DRM_EXYNOS_HDMI |
76 | bool "HDMI" | 76 | bool "HDMI" |
77 | depends on DRM_EXYNOS_MIXER || DRM_EXYNOS5433_DECON | 77 | depends on DRM_EXYNOS_MIXER || DRM_EXYNOS5433_DECON |
78 | select CEC_CORE if CEC_NOTIFIER | ||
78 | help | 79 | help |
79 | Choose this option if you want to use Exynos HDMI for DRM. | 80 | Choose this option if you want to use Exynos HDMI for DRM. |
80 | 81 | ||