Skip to content

Commit

Permalink
drm/bridge: Put Kconfig entries in a separate menu
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thierry Reding committed Aug 14, 2015
1 parent 58c467e commit a33ee95
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ config DRM_KMS_CMA_HELPER

source "drivers/gpu/drm/i2c/Kconfig"

source "drivers/gpu/drm/bridge/Kconfig"

config DRM_TDFX
tristate "3dfx Banshee/Voodoo3+"
depends on DRM && PCI
Expand Down Expand Up @@ -235,6 +233,8 @@ source "drivers/gpu/drm/tegra/Kconfig"

source "drivers/gpu/drm/panel/Kconfig"

source "drivers/gpu/drm/bridge/Kconfig"

source "drivers/gpu/drm/sti/Kconfig"

source "drivers/gpu/drm/amd/amdkfd/Kconfig"
Expand Down
14 changes: 11 additions & 3 deletions drivers/gpu/drm/bridge/Kconfig
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -14,11 +21,12 @@ 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
select BACKLIGHT_LCD_SUPPORT
select BACKLIGHT_CLASS_DEVICE
---help---
Parade eDP-LVDS bridge chip driver.

endmenu

0 comments on commit a33ee95

Please sign in to comment.