summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-23 13:53:11 -0600
committerTom Rini <[email protected]>2026-05-30 07:44:08 -0600
commitdf08b27590d5c4bdc1bd644a6bcb8c0dc964780f (patch)
treeaf5871e28ea34414ad899ee5c8bfbe4cc664f7a6 /drivers
parentff3bece92fc5e0bdbd49e6b3e87da58fb4129a3c (diff)
video: Correct dependencies for VIDEO_TIDSS
The VIDEO_TIDSS functionality can only work with PANEL enabled, so express this dependency in Kconfig for all phases. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/tidss/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/tidss/Kconfig b/drivers/video/tidss/Kconfig
index 3291b3ceb8d..c9849110059 100644
--- a/drivers/video/tidss/Kconfig
+++ b/drivers/video/tidss/Kconfig
@@ -10,7 +10,7 @@
menuconfig VIDEO_TIDSS
bool "Enable TIDSS video support"
- depends on VIDEO
+ depends on VIDEO && PANEL
imply VIDEO_DAMAGE
help
TIDSS supports video output options LVDS and
@@ -19,7 +19,7 @@ menuconfig VIDEO_TIDSS
config SPL_VIDEO_TIDSS
bool "Enable TIDSS video support in SPL Stage"
- depends on SPL_VIDEO
+ depends on SPL_VIDEO && SPL_PANEL
help
This options enables tidss driver in SPL stage. If
you need to use tidss at SPL stage use this config.