Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1737619
| From | Randy Dunlap <rdunlap@infradead.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] auxdisplay: fix broken menus |
| Date | 2017-09-22 18:30 +0200 |
| Message-ID | <usyZZ-8kh-23@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Randy Dunlap <rdunlap@infradead.org> Having the CHARLCD Kconfig symbol between "menuconfig AUXDISPLAY" and "if AUXDISPLAY" breaks the AUXDISPLAY submenus, so move the CHARLCD Kconfig symbol above the "menuconfig" so that the menu display is continuous. Fixes: 39f8ea46724e (auxdisplay: charlcd: Extract character LCD core from misc/panel) Cc: stable@vger.kernel.org # v4.12 Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> --- drivers/auxdisplay/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- lnx-414-rc1.orig/drivers/auxdisplay/Kconfig +++ lnx-414-rc1/drivers/auxdisplay/Kconfig @@ -5,6 +5,9 @@ # Auxiliary display drivers configuration. # +config CHARLCD + tristate "Character LCD core support" if COMPILE_TEST + menuconfig AUXDISPLAY bool "Auxiliary Display support" ---help--- @@ -13,9 +16,6 @@ menuconfig AUXDISPLAY If you say N, all options in this submenu will be skipped and disabled. -config CHARLCD - tristate "Character LCD core support" if COMPILE_TEST - if AUXDISPLAY config HD44780
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] auxdisplay: fix broken menus Randy Dunlap <rdunlap@infradead.org> - 2017-09-22 18:30 +0200
Re: [PATCH] auxdisplay: fix broken menus Geert Uytterhoeven <geert@linux-m68k.org> - 2017-09-22 20:20 +0200
Re: [PATCH] auxdisplay: fix broken menus Randy Dunlap <rdunlap@infradead.org> - 2017-09-22 20:30 +0200
Re: [PATCH] auxdisplay: fix broken menus Geert Uytterhoeven <geert@linux-m68k.org> - 2017-09-22 21:50 +0200
Re: [PATCH] auxdisplay: fix broken menus Randy Dunlap <rdunlap@infradead.org> - 2017-09-22 22:10 +0200
Re: [PATCH] auxdisplay: fix broken menus Geert Uytterhoeven <geert@linux-m68k.org> - 2017-09-22 22:20 +0200
Re: [PATCH] auxdisplay: fix broken menus Randy Dunlap <rdunlap@infradead.org> - 2017-09-22 22:50 +0200
csiph-web