diff options
author | Thierry Reding <treding@nvidia.com> | 2015-07-21 17:01:19 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-08-14 21:35:36 +0200 |
commit | a33ee95f8f456c241897a4b6153610b8488d009d (patch) | |
tree | 141666c88619797a88ec6db581c9549ed5adb09f /drivers/gpu/drm/bridge | |
parent | 58c467ece486e9bd1e26b4fd68e8cdef8501952d (diff) | |
download | blackbird-obmc-linux-a33ee95f8f456c241897a4b6153610b8488d009d.tar.gz blackbird-obmc-linux-a33ee95f8f456c241897a4b6153610b8488d009d.zip |
drm/bridge: Put Kconfig entries in a separate menu
Put the Kconfig entries for bridge drivers into a separate menu so that
they are automatically grouped and don't clutter up the top-level menu.
While at it, move the bridge menu towards the end of the top-level menu
where the panel menu is already located.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/bridge')
-rw-r--r-- | drivers/gpu/drm/bridge/Kconfig | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/drivers/gpu/drm/bridge/Kconfig b/drivers/gpu/drm/bridge/Kconfig index adac3250684b..2de52a53a803 100644 --- a/drivers/gpu/drm/bridge/Kconfig +++ b/drivers/gpu/drm/bridge/Kconfig @@ -1,11 +1,18 @@ +config DRM_BRIDGE + def_bool y + depends on DRM + help + Bridge registration and lookup framework. + +menu "Display Interface Bridges" + depends on DRM && DRM_BRIDGE + config DRM_DW_HDMI tristate - depends on DRM select DRM_KMS_HELPER config DRM_NXP_PTN3460 tristate "NXP PTN3460 DP/LVDS bridge" - depends on DRM depends on OF select DRM_KMS_HELPER select DRM_PANEL @@ -14,7 +21,6 @@ config DRM_NXP_PTN3460 config DRM_PARADE_PS8622 tristate "Parade eDP/LVDS bridge" - depends on DRM depends on OF select DRM_PANEL select DRM_KMS_HELPER @@ -22,3 +28,5 @@ config DRM_PARADE_PS8622 select BACKLIGHT_CLASS_DEVICE ---help--- Parade eDP-LVDS bridge chip driver. + +endmenu |