diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-01-12 15:19:35 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-01-13 13:09:11 +0900 |
commit | f00117a78341e330eecebdfe74cce345ed068802 (patch) | |
tree | a15ab6a56dc50c292d6dff1a2716d2862a3fa47f | |
parent | e41f1a98940824ad0c95271e69939acdc6092e5f (diff) | |
download | linux-3.10-f00117a78341e330eecebdfe74cce345ed068802.tar.gz linux-3.10-f00117a78341e330eecebdfe74cce345ed068802.tar.bz2 linux-3.10-f00117a78341e330eecebdfe74cce345ed068802.zip |
video: move SH_MIPI_DSI/SH_LCD_MIPI_DSI to the top of menu
Kconfig entries SH_MIPI_DSI and SH_LCD_MIPI_DSI while being invisible to
the user, broke the FrameBuffer menu (at least in menuconfig), as they
aren't depending on respective menuconfig item (FB). In result several
items got moved to the main "Graphics support" menu. Move these two
problematic items to the top of drivers/video/Kbuild to restore nice
display of FB menu.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | drivers/video/Kconfig | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 0a96a60bbe4..d916ac04aba 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -11,6 +11,13 @@ config HAVE_FB_ATMEL config HAVE_FB_IMX bool +config SH_MIPI_DSI + tristate + depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK + +config SH_LCD_MIPI_DSI + bool + source "drivers/char/agp/Kconfig" source "drivers/gpu/vga/Kconfig" @@ -1990,13 +1997,6 @@ config FB_W100 If unsure, say N. -config SH_MIPI_DSI - tristate - depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK - -config SH_LCD_MIPI_DSI - bool - config FB_SH_MOBILE_LCDC tristate "SuperH Mobile LCDC framebuffer support" depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK |