devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Geert Uytterhoeven <geert@linux-m68k.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	 Andy Shevchenko <andy@kernel.org>,
	Rob Herring <robh+dt@kernel.org>,
	 Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	 Robin van der Gracht <robin@protonic.nl>,
	Paul Burton <paulburton@kernel.org>
Subject: Re: [PATCH v2 07/15] auxdisplay: linedisp: Group line display drivers together
Date: Thu, 15 Feb 2024 11:05:00 +0100	[thread overview]
Message-ID: <CAMuHMdW=gTH12vLALAU_ioCKX9E2mJ3uR+8Q6GT0brc4yg83_A@mail.gmail.com> (raw)
In-Reply-To: <20240212170423.2860895-8-andriy.shevchenko@linux.intel.com>

Hi Andy,

On Mon, Feb 12, 2024 at 6:04 PM Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
> For better usability group the line display drivers together in Kconfig
> and Makefile.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Thanks for your patch!

> --- a/drivers/auxdisplay/Kconfig
> +++ b/drivers/auxdisplay/Kconfig
> @@ -25,12 +25,6 @@ config CHARLCD
>           This is some character LCD core interface that multiple drivers can
>           use.
>
> -config LINEDISP
> -       tristate "Character line display core support" if COMPILE_TEST
> -       help
> -         This is the core support for single-line character displays, to be
> -         selected by drivers that use it.
> -
>  config HD44780_COMMON
>         tristate "Common functions for HD44780 (and compatibles) LCD displays" if COMPILE_TEST
>         select CHARLCD
> @@ -52,6 +46,16 @@ config HD44780
>           kernel and started at boot.
>           If you don't understand what all this is about, say N.
>
> +config LCD2S
> +       tristate "lcd2s 20x4 character display over I2C console"
> +       depends on I2C
> +       select CHARLCD
> +       help
> +         This is a driver that lets you use the lcd2s 20x4 character display
> +         from Modtronix engineering as a console output device. The display
> +         is a simple single color character display. You have to connect it
> +         to an I2C bus.
> +

I think it would be good to have "# <display type> section" comments,
to make the grouping clear.
Else I wonder why "L" is sorted before "K" ;-)

>  config KS0108
>         tristate "KS0108 LCD Controller"
>         depends on PARPORT_PC
> @@ -153,6 +157,12 @@ config CFAG12864B_RATE
>           If you compile this as a module, you can still override this
>           value using the module parameters.
>
> +config LINEDISP
> +       tristate "Character line display core support" if COMPILE_TEST
> +       help
> +         This is the core support for single-line character displays, to be
> +         selected by drivers that use it.
> +
>  config IMG_ASCII_LCD
>         tristate "Imagination Technologies ASCII LCD Display"
>         depends on HAS_IOMEM
> @@ -177,16 +187,6 @@ config HT16K33
>           Say yes here to add support for Holtek HT16K33, RAM mapping 16*8
>           LED controller driver with keyscan.
>
> -config LCD2S
> -       tristate "lcd2s 20x4 character display over I2C console"
> -       depends on I2C
> -       select CHARLCD
> -       help
> -         This is a driver that lets you use the lcd2s 20x4 character display
> -         from Modtronix engineering as a console output device. The display
> -         is a simple single color character display. You have to connect it
> -         to an I2C bus.
> -
>  config ARM_CHARLCD
>         bool "ARM Ltd. Character LCD Driver"
>         depends on PLAT_VERSATILE

Shouldn't this (and PARPORT_PANEL and friends) be moved up, to the
character LCD section?

> diff --git a/drivers/auxdisplay/Makefile b/drivers/auxdisplay/Makefile
> index 6968ed4d3f0a..43bad850481c 100644
> --- a/drivers/auxdisplay/Makefile
> +++ b/drivers/auxdisplay/Makefile
> @@ -5,12 +5,12 @@
>
>  obj-$(CONFIG_CHARLCD)          += charlcd.o
>  obj-$(CONFIG_HD44780_COMMON)   += hd44780_common.o
> -obj-$(CONFIG_ARM_CHARLCD)      += arm-charlcd.o
> +obj-$(CONFIG_HD44780)          += hd44780.o
> +obj-$(CONFIG_LCD2S)            += lcd2s.o
>  obj-$(CONFIG_KS0108)           += ks0108.o
>  obj-$(CONFIG_CFAG12864B)       += cfag12864b.o cfag12864bfb.o
> -obj-$(CONFIG_IMG_ASCII_LCD)    += img-ascii-lcd.o
> -obj-$(CONFIG_HD44780)          += hd44780.o
> -obj-$(CONFIG_HT16K33)          += ht16k33.o
> -obj-$(CONFIG_PARPORT_PANEL)    += panel.o
> -obj-$(CONFIG_LCD2S)            += lcd2s.o
>  obj-$(CONFIG_LINEDISP)         += line-display.o
> +obj-$(CONFIG_IMG_ASCII_LCD)    += img-ascii-lcd.o
> +obj-$(CONFIG_HT16K33)          += ht16k33.o
> +obj-$(CONFIG_ARM_CHARLCD)      += arm-charlcd.o
> +obj-$(CONFIG_PARPORT_PANEL)    += panel.o

IMHO it hurts to not sort Makefile entries alphabetically.

Gr{oetje,eeting}s,

                        Geert


--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

  reply	other threads:[~2024-02-15 10:05 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-12 17:01 [PATCH v2 00/15] auxdisplay: linedisp: Clean up and add new driver Andy Shevchenko
2024-02-12 17:01 ` [PATCH v2 01/15] auxdisplay: img-ascii-lcd: Make container_of() no-op for struct linedisp Andy Shevchenko
2024-02-15 10:03   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 02/15] auxdisplay: linedisp: Free allocated resources in ->release() Andy Shevchenko
2024-02-15 10:03   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 03/15] auxdisplay: linedisp: Use unique number for id Andy Shevchenko
2024-02-15 10:03   ` Geert Uytterhoeven
2024-02-15 11:28     ` Andy Shevchenko
2024-02-12 17:01 ` [PATCH v2 04/15] auxdisplay: linedisp: Unshadow error codes in ->store() Andy Shevchenko
2024-02-15 10:03   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 05/15] auxdisplay: linedisp: Add missing header(s) Andy Shevchenko
2024-02-15 10:03   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 06/15] auxdisplay: linedisp: Move exported symbols to a namespace Andy Shevchenko
2024-02-15 10:04   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 07/15] auxdisplay: linedisp: Group line display drivers together Andy Shevchenko
2024-02-15 10:05   ` Geert Uytterhoeven [this message]
2024-02-15 11:30     ` Andy Shevchenko
2024-02-15 12:35       ` Geert Uytterhoeven
2024-02-15 13:57         ` Andy Shevchenko
2024-02-12 17:01 ` [PATCH v2 08/15] auxdisplay: linedisp: Provide struct linedisp_ops for future extension Andy Shevchenko
2024-02-15 10:13   ` Geert Uytterhoeven
2024-02-15 12:11     ` Andy Shevchenko
2024-02-12 17:01 ` [PATCH v2 09/15] auxdisplay: linedisp: Add support for overriding character mapping Andy Shevchenko
2024-02-15 10:36   ` Geert Uytterhoeven
2024-02-15 12:14     ` Andy Shevchenko
2024-02-12 17:01 ` [PATCH v2 10/15] auxdisplay: linedisp: Provide a small buffer in the struct linedisp Andy Shevchenko
2024-02-15 10:40   ` Geert Uytterhoeven
2024-02-15 12:16     ` Andy Shevchenko
2024-02-15 12:19       ` Andy Shevchenko
2024-02-15 12:33         ` Geert Uytterhoeven
2024-02-15 13:57           ` Andy Shevchenko
2024-02-12 17:01 ` [PATCH v2 11/15] auxdisplay: ht16k33: Move ht16k33_linedisp_ops down Andy Shevchenko
2024-02-15  8:09   ` Robin van der Gracht
2024-02-15 10:41   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 12/15] auxdisplay: ht16k33: Switch to use line display character mapping Andy Shevchenko
2024-02-15  8:09   ` Robin van der Gracht
2024-02-15  8:16   ` Geert Uytterhoeven
2024-02-15 12:20     ` Andy Shevchenko
2024-02-15 12:31       ` Geert Uytterhoeven
2024-02-15 10:44   ` Geert Uytterhoeven
2024-02-15 10:47     ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 13/15] auxdisplay: ht16k33: Use buffer from struct linedisp Andy Shevchenko
2024-02-15  8:09   ` Robin van der Gracht
2024-02-15 10:46   ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 14/15] dt-bindings: auxdisplay: Add Maxim MAX6958/6959 Andy Shevchenko
2024-02-12 17:14   ` Andy Shevchenko
2024-02-12 17:16     ` Andy Shevchenko
2024-02-15  8:21       ` Krzysztof Kozlowski
2024-02-15 11:18         ` Andy Shevchenko
2024-02-15 10:57       ` Geert Uytterhoeven
2024-02-15 11:17         ` Andy Shevchenko
2024-02-15 12:26           ` Geert Uytterhoeven
2024-02-12 17:01 ` [PATCH v2 15/15] auxdisplay: Add driver for MAX695x 7-segment LED controllers Andy Shevchenko
2024-02-15 11:01   ` Geert Uytterhoeven
2024-02-14 17:57 ` [PATCH v2 00/15] auxdisplay: linedisp: Clean up and add new driver Andy Shevchenko
2024-02-14 18:45   ` Geert Uytterhoeven
2024-02-14 18:51     ` Andy Shevchenko
2024-02-15 11:05     ` Geert Uytterhoeven
2024-02-15 12:38       ` Andy Shevchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAMuHMdW=gTH12vLALAU_ioCKX9E2mJ3uR+8Q6GT0brc4yg83_A@mail.gmail.com' \
    --to=geert@linux-m68k.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=andy@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=paulburton@kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=robin@protonic.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).