From: Lee Jones <lee@kernel.org>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: "Daniel Thompson" <daniel.thompson@linaro.org>,
"Jingoo Han" <jingoohan1@gmail.com>,
"Helge Deller" <deller@gmx.de>,
"Bruno Prémont" <bonbons@linux-vserver.org>,
"Jiri Kosina" <jikos@kernel.org>,
"Benjamin Tissoires" <bentiss@kernel.org>,
"Alexander Shiyan" <shc_work@mail.ru>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Shawn Guo" <shawnguo@kernel.org>,
"Fabio Estevam" <festevam@gmail.com>,
dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-input@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, imx@lists.linux.dev,
linux-omap@vger.kernel.org,
"Thomas Weißschuh" <linux@weissschuh.net>
Subject: Re: [PATCH v2 19/19] const_structs.checkpatch: add lcd_ops
Date: Thu, 2 May 2024 08:21:26 +0100 [thread overview]
Message-ID: <20240502072126.GC5338@google.com> (raw)
In-Reply-To: <20240424-video-backlight-lcd-ops-v2-19-1aaa82b07bc6@kernel.org>
On Wed, 24 Apr 2024, Krzysztof Kozlowski wrote:
> 'struct lcd_ops' is not modified by core code.
>
> Suggested-by: Thomas Weißschuh <linux@weissschuh.net>
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
>
> ---
>
> Patch making lcd_ops const in progress:
> https://lore.kernel.org/r/20240414-video-backlight-lcd-ops-v1-0-9b37fcbf546a@kernel.org
>
> Cc: Lee Jones <lee@kernel.org>
> Cc: Daniel Thompson <daniel.thompson@linaro.org>
> Cc: Jingoo Han <jingoohan1@gmail.com>
> Cc: linux-fbdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> scripts/const_structs.checkpatch | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/scripts/const_structs.checkpatch b/scripts/const_structs.checkpatch
> index fa96cfd16e99..52e5bfb61fd0 100644
> --- a/scripts/const_structs.checkpatch
> +++ b/scripts/const_structs.checkpatch
> @@ -39,6 +39,7 @@ kgdb_arch
> kgdb_io
> kobj_type
> kset_uevent_ops
> +lcd_ops
Acked-by: Lee Jones <lee@kernel.org>
> lock_manager_operations
> machine_desc
> microcode_ops
--
Lee Jones [李琼斯]
WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee@kernel.org>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: "Daniel Thompson" <daniel.thompson@linaro.org>,
"Jingoo Han" <jingoohan1@gmail.com>,
"Helge Deller" <deller@gmx.de>,
"Bruno Prémont" <bonbons@linux-vserver.org>,
"Jiri Kosina" <jikos@kernel.org>,
"Benjamin Tissoires" <bentiss@kernel.org>,
"Alexander Shiyan" <shc_work@mail.ru>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Shawn Guo" <shawnguo@kernel.org>,
"Fabio Estevam" <festevam@gmail.com>,
dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-input@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, imx@lists.linux.dev,
linux-omap@vger.kernel.org,
"Thomas Weißschuh" <linux@weissschuh.net>
Subject: Re: [PATCH v2 19/19] const_structs.checkpatch: add lcd_ops
Date: Thu, 2 May 2024 08:21:26 +0100 [thread overview]
Message-ID: <20240502072126.GC5338@google.com> (raw)
In-Reply-To: <20240424-video-backlight-lcd-ops-v2-19-1aaa82b07bc6@kernel.org>
On Wed, 24 Apr 2024, Krzysztof Kozlowski wrote:
> 'struct lcd_ops' is not modified by core code.
>
> Suggested-by: Thomas Weißschuh <linux@weissschuh.net>
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
>
> ---
>
> Patch making lcd_ops const in progress:
> https://lore.kernel.org/r/20240414-video-backlight-lcd-ops-v1-0-9b37fcbf546a@kernel.org
>
> Cc: Lee Jones <lee@kernel.org>
> Cc: Daniel Thompson <daniel.thompson@linaro.org>
> Cc: Jingoo Han <jingoohan1@gmail.com>
> Cc: linux-fbdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> scripts/const_structs.checkpatch | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/scripts/const_structs.checkpatch b/scripts/const_structs.checkpatch
> index fa96cfd16e99..52e5bfb61fd0 100644
> --- a/scripts/const_structs.checkpatch
> +++ b/scripts/const_structs.checkpatch
> @@ -39,6 +39,7 @@ kgdb_arch
> kgdb_io
> kobj_type
> kset_uevent_ops
> +lcd_ops
Acked-by: Lee Jones <lee@kernel.org>
> lock_manager_operations
> machine_desc
> microcode_ops
--
Lee Jones [李琼斯]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-05-02 7:21 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-24 6:33 [PATCH v2 00/19] backlight: Constify lcd_ops Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 01/19] " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 02/19] backlight: ams369fg06: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 03/19] backlight: corgi_lcd: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 04/19] backlight: hx8357: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 05/19] backlight: ili922x: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 06/19] backlight: ili9320: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 07/19] backlight: jornada720_lcd: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 08/19] backlight: l4f00242t03: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 09/19] backlight: lms283gf05: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 10/19] backlight: lms501kf03: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 11/19] backlight: ltv350qv: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 12/19] backlight: otm3225a: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 13/19] backlight: platform_lcd: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 14/19] backlight: tdo24m: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 15/19] HID: picoLCD: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 16/19] fbdev: clps711x: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 17/19] fbdev: imx: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 7:05 ` Peng Fan
2024-04-24 7:05 ` Peng Fan
2024-04-24 6:33 ` [PATCH v2 18/19] fbdev: omap: lcd_ams_delta: " Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 6:33 ` [PATCH v2 19/19] const_structs.checkpatch: add lcd_ops Krzysztof Kozlowski
2024-04-24 6:33 ` Krzysztof Kozlowski
2024-04-24 10:08 ` Daniel Thompson
2024-04-24 10:08 ` Daniel Thompson
2024-05-02 7:21 ` Lee Jones [this message]
2024-05-02 7:21 ` Lee Jones
2024-05-02 7:22 ` [PATCH v2 00/19] backlight: Constify lcd_ops Lee Jones
2024-05-02 7:22 ` Lee Jones
2024-05-02 7:47 ` Krzysztof Kozlowski
2024-05-02 7:47 ` Krzysztof Kozlowski
2024-05-03 9:41 ` Lee Jones
2024-05-03 9:41 ` Lee Jones
2024-05-03 9:43 ` Lee Jones
2024-05-03 9:43 ` Lee Jones
2024-05-03 9:55 ` Lee Jones
2024-05-03 9:55 ` Lee Jones
2024-05-10 14:55 ` [GIT PULL] Immutable branch between Backlight, HID and fbdev due for the v6.10 merge window Lee Jones
2024-05-10 14:55 ` Lee Jones
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=20240502072126.GC5338@google.com \
--to=lee@kernel.org \
--cc=bentiss@kernel.org \
--cc=bonbons@linux-vserver.org \
--cc=daniel.thompson@linaro.org \
--cc=deller@gmx.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=jikos@kernel.org \
--cc=jingoohan1@gmail.com \
--cc=kernel@pengutronix.de \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux@weissschuh.net \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=shc_work@mail.ru \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.