* [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args()
@ 2025-07-01 9:22 Uwe Kleine-König
2025-07-01 9:22 ` [PATCH 1/2] " Uwe Kleine-König
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Uwe Kleine-König @ 2025-07-01 9:22 UTC (permalink / raw)
To: Flavio Suligoi, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller
Cc: Daniel Thompson, dri-devel, linux-fbdev, linux-pwm
Hello,
the first patch of this series is what I really care about: There are
hardly any drivers left that use pwm_apply_args(). When all of them are
converted to not use it any more, I intend to drop that function.
The 2nd patch is just a change that I noticed while editing the driver
that is IMHO nice. If you don't agree and only apply the first patch, I
won't argue. It's an alternative approach to what Daniel Thompson did in
commit 7ee6478d5aa9 ("backlight: mp3309c: Fully initialize
backlight_properties during probe").
Best regards
Uwe
Uwe Kleine-König (2):
backlight: mp3309c: Drop pwm_apply_args()
backlight: mp3309c: Initialize backlight properties without memset
drivers/video/backlight/mp3309c.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
base-commit: 1343433ed38923a21425c602e92120a1f1db5f7a
--
2.49.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-01 9:22 [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() Uwe Kleine-König
@ 2025-07-01 9:22 ` Uwe Kleine-König
2025-07-07 15:48 ` EXTERNAL: " FLAVIO SULIGOI
2025-08-18 9:15 ` Daniel Thompson
2025-07-01 9:22 ` [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset Uwe Kleine-König
` (2 subsequent siblings)
3 siblings, 2 replies; 12+ messages in thread
From: Uwe Kleine-König @ 2025-07-01 9:22 UTC (permalink / raw)
To: Flavio Suligoi, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller
Cc: dri-devel, linux-fbdev, linux-pwm
pwm_apply_args() sole purpose is to initialize all parameters specified
in the device tree for consumers that rely on pwm_config() and
pwm_enable(). The mp3309c backlight driver uses pwm_apply_might_sleep()
which gets passed the full configuration and so doesn't rely on the
default being explicitly applied.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
---
drivers/video/backlight/mp3309c.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/video/backlight/mp3309c.c b/drivers/video/backlight/mp3309c.c
index 372058e26129..bb4e85531cea 100644
--- a/drivers/video/backlight/mp3309c.c
+++ b/drivers/video/backlight/mp3309c.c
@@ -222,7 +222,6 @@ static int mp3309c_parse_fwnode(struct mp3309c_chip *chip,
if (IS_ERR(chip->pwmd))
return dev_err_probe(dev, PTR_ERR(chip->pwmd), "error getting pwm data\n");
pdata->dimming_mode = DIMMING_PWM;
- pwm_apply_args(chip->pwmd);
}
/*
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset
2025-07-01 9:22 [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() Uwe Kleine-König
2025-07-01 9:22 ` [PATCH 1/2] " Uwe Kleine-König
@ 2025-07-01 9:22 ` Uwe Kleine-König
2025-07-07 15:49 ` EXTERNAL: " FLAVIO SULIGOI
2025-08-18 9:16 ` Daniel Thompson
2025-07-07 15:44 ` EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() FLAVIO SULIGOI
2025-09-02 10:35 ` Lee Jones
3 siblings, 2 replies; 12+ messages in thread
From: Uwe Kleine-König @ 2025-07-01 9:22 UTC (permalink / raw)
To: Flavio Suligoi, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller
Cc: dri-devel, linux-fbdev, linux-pwm
Assigning values to a struct using a compound literal (since C99) also
guarantees that all unspecified struct members are empty-initialized, so
it properly replaces the memset to zero.
The code looks a bit nicer and more idiomatic (though that might be
subjective?). The resulting binary is a bit smaller. On ARCH=arm with
an allnoconfig + minimal changes to enable the mp3309c driver the
difference is 12 bytes.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
---
drivers/video/backlight/mp3309c.c | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/drivers/video/backlight/mp3309c.c b/drivers/video/backlight/mp3309c.c
index bb4e85531cea..9337110ce6e5 100644
--- a/drivers/video/backlight/mp3309c.c
+++ b/drivers/video/backlight/mp3309c.c
@@ -352,12 +352,13 @@ static int mp3309c_probe(struct i2c_client *client)
chip->pdata = pdata;
/* Backlight properties */
- memset(&props, 0, sizeof(struct backlight_properties));
- props.brightness = pdata->default_brightness;
- props.max_brightness = pdata->max_brightness;
- props.scale = BACKLIGHT_SCALE_LINEAR;
- props.type = BACKLIGHT_RAW;
- props.power = BACKLIGHT_POWER_ON;
+ props = (typeof(props)){
+ .brightness = pdata->default_brightness,
+ .max_brightness = pdata->max_brightness,
+ .scale = BACKLIGHT_SCALE_LINEAR,
+ .type = BACKLIGHT_RAW,
+ .power = BACKLIGHT_POWER_ON,
+ };
chip->bl = devm_backlight_device_register(dev, "mp3309c", dev, chip,
&mp3309c_bl_ops, &props);
if (IS_ERR(chip->bl))
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-01 9:22 [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() Uwe Kleine-König
2025-07-01 9:22 ` [PATCH 1/2] " Uwe Kleine-König
2025-07-01 9:22 ` [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset Uwe Kleine-König
@ 2025-07-07 15:44 ` FLAVIO SULIGOI
2025-07-29 20:17 ` Uwe Kleine-König
2025-09-02 10:35 ` Lee Jones
3 siblings, 1 reply; 12+ messages in thread
From: FLAVIO SULIGOI @ 2025-07-07 15:44 UTC (permalink / raw)
To: Uwe Kleine-König, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller
Cc: Daniel Thompson, dri-devel@lists.freedesktop.org,
linux-fbdev@vger.kernel.org, linux-pwm@vger.kernel.org
Hi Uwe,
> -----Original Message-----
> From: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> Sent: martedì 1 luglio 2025 11:23
> To: FLAVIO SULIGOI <f.suligoi@asem.it>; Lee Jones <lee@kernel.org>;
> Daniel Thompson <danielt@kernel.org>; Jingoo Han <jingoohan1@gmail.com>;
> Helge Deller <deller@gmx.de>
> Cc: Daniel Thompson <daniel.thompson@linaro.org>; dri-
> devel@lists.freedesktop.org; linux-fbdev@vger.kernel.org; linux-
> pwm@vger.kernel.org
> Subject: EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args()
>
> [Use caution with links & attachments]
>
>
>
> Hello,
>
> the first patch of this series is what I really care about: There are
> hardly any drivers left that use pwm_apply_args(). When all of them are
> converted to not use it any more, I intend to drop that function.
>
> The 2nd patch is just a change that I noticed while editing the driver
> that is IMHO nice. If you don't agree and only apply the first patch, I
> won't argue. It's an alternative approach to what Daniel Thompson did in
> commit 7ee6478d5aa9 ("backlight: mp3309c: Fully initialize
> backlight_properties during probe").
I've tested your patches on my board and all is ok.
Thanks!
>
> Best regards
> Uwe
>
> Uwe Kleine-König (2):
> backlight: mp3309c: Drop pwm_apply_args()
> backlight: mp3309c: Initialize backlight properties without memset
>
> drivers/video/backlight/mp3309c.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
>
> base-commit: 1343433ed38923a21425c602e92120a1f1db5f7a
> --
> 2.49.0
Flavio
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: EXTERNAL: [PATCH 1/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-01 9:22 ` [PATCH 1/2] " Uwe Kleine-König
@ 2025-07-07 15:48 ` FLAVIO SULIGOI
2025-08-18 9:15 ` Daniel Thompson
1 sibling, 0 replies; 12+ messages in thread
From: FLAVIO SULIGOI @ 2025-07-07 15:48 UTC (permalink / raw)
To: Uwe Kleine-König, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller
Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org,
linux-pwm@vger.kernel.org
Hi Uwe,
I've tested your patch on my board, all ok.
> -----Original Message-----
> From: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> Sent: martedì 1 luglio 2025 11:23
> To: FLAVIO SULIGOI <f.suligoi@asem.it>; Lee Jones <lee@kernel.org>;
> Daniel Thompson <danielt@kernel.org>; Jingoo Han <jingoohan1@gmail.com>;
> Helge Deller <deller@gmx.de>
> Cc: dri-devel@lists.freedesktop.org; linux-fbdev@vger.kernel.org; linux-
> pwm@vger.kernel.org
> Subject: EXTERNAL: [PATCH 1/2] backlight: mp3309c: Drop pwm_apply_args()
>
> [Use caution with links & attachments]
>
>
>
> pwm_apply_args() sole purpose is to initialize all parameters specified
> in the device tree for consumers that rely on pwm_config() and
> pwm_enable(). The mp3309c backlight driver uses pwm_apply_might_sleep()
> which gets passed the full configuration and so doesn't rely on the
> default being explicitly applied.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Tested-by: Flavio Suligoi <f.suligoi@asem.it>
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: EXTERNAL: [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset
2025-07-01 9:22 ` [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset Uwe Kleine-König
@ 2025-07-07 15:49 ` FLAVIO SULIGOI
2025-08-18 9:16 ` Daniel Thompson
1 sibling, 0 replies; 12+ messages in thread
From: FLAVIO SULIGOI @ 2025-07-07 15:49 UTC (permalink / raw)
To: Uwe Kleine-König, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller
Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org,
linux-pwm@vger.kernel.org
Hi Uwe,
I've tested your patch on my board, all ok.
> -----Original Message-----
> From: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
> Sent: martedì 1 luglio 2025 11:23
> To: FLAVIO SULIGOI <f.suligoi@asem.it>; Lee Jones <lee@kernel.org>;
> Daniel Thompson <danielt@kernel.org>; Jingoo Han <jingoohan1@gmail.com>;
> Helge Deller <deller@gmx.de>
> Cc: dri-devel@lists.freedesktop.org; linux-fbdev@vger.kernel.org; linux-
> pwm@vger.kernel.org
> Subject: EXTERNAL: [PATCH 2/2] backlight: mp3309c: Initialize backlight
> properties without memset
>
> [Use caution with links & attachments]
>
>
>
> Assigning values to a struct using a compound literal (since C99) also
> guarantees that all unspecified struct members are empty-initialized, so
> it properly replaces the memset to zero.
>
> The code looks a bit nicer and more idiomatic (though that might be
> subjective?). The resulting binary is a bit smaller. On ARCH=arm with an
> allnoconfig + minimal changes to enable the mp3309c driver the
> difference is 12 bytes.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Tested-by: Flavio Suligoi <f.suligoi@asem.it>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-07 15:44 ` EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() FLAVIO SULIGOI
@ 2025-07-29 20:17 ` Uwe Kleine-König
2025-08-18 8:54 ` Uwe Kleine-König
0 siblings, 1 reply; 12+ messages in thread
From: Uwe Kleine-König @ 2025-07-29 20:17 UTC (permalink / raw)
To: FLAVIO SULIGOI, Lee Jones, Daniel Thompson, Jingoo Han
Cc: Helge Deller, Daniel Thompson, dri-devel@lists.freedesktop.org,
linux-fbdev@vger.kernel.org, linux-pwm@vger.kernel.org
[-- Attachment #1: Type: text/plain, Size: 1136 bytes --]
[Updating Daniel's email address as the linaro one stopped working]
Hello,
On Mon, Jul 07, 2025 at 03:44:25PM +0000, FLAVIO SULIGOI wrote:
> > the first patch of this series is what I really care about: There are
> > hardly any drivers left that use pwm_apply_args(). When all of them are
> > converted to not use it any more, I intend to drop that function.
> >
> > The 2nd patch is just a change that I noticed while editing the driver
> > that is IMHO nice. If you don't agree and only apply the first patch, I
> > won't argue. It's an alternative approach to what Daniel Thompson did in
> > commit 7ee6478d5aa9 ("backlight: mp3309c: Fully initialize
> > backlight_properties during probe").
>
> I've tested your patches on my board and all is ok.
@Flavio:
A Tested-by in this reply to the cover letter is understood by b4 (which
is the tool most maintainers use to apply patches from the mailing
list). So there wouldn't have been a need to reply to each mail
individually.
@backlight maintainers:
This patch didn't make it into next yet, I guess it's too late for
6.17-rc1 now?
Best regards
Uwe
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-29 20:17 ` Uwe Kleine-König
@ 2025-08-18 8:54 ` Uwe Kleine-König
0 siblings, 0 replies; 12+ messages in thread
From: Uwe Kleine-König @ 2025-08-18 8:54 UTC (permalink / raw)
To: FLAVIO SULIGOI, Lee Jones, Daniel Thompson, Jingoo Han
Cc: Helge Deller, dri-devel, linux-fbdev
[-- Attachment #1: Type: text/plain, Size: 2216 bytes --]
Hello,
On Tue, Jul 29, 2025 at 10:17:20PM +0200, Uwe Kleine-König wrote:
> [Updating Daniel's email address as the linaro one stopped working]
>
> Hello,
>
> On Mon, Jul 07, 2025 at 03:44:25PM +0000, FLAVIO SULIGOI wrote:
> > > the first patch of this series is what I really care about: There are
> > > hardly any drivers left that use pwm_apply_args(). When all of them are
> > > converted to not use it any more, I intend to drop that function.
> > >
> > > The 2nd patch is just a change that I noticed while editing the driver
> > > that is IMHO nice. If you don't agree and only apply the first patch, I
> > > won't argue. It's an alternative approach to what Daniel Thompson did in
> > > commit 7ee6478d5aa9 ("backlight: mp3309c: Fully initialize
> > > backlight_properties during probe").
> >
> > I've tested your patches on my board and all is ok.
>
> @Flavio:
> A Tested-by in this reply to the cover letter is understood by b4 (which
> is the tool most maintainers use to apply patches from the mailing
> list). So there wouldn't have been a need to reply to each mail
> individually.
>
> @backlight maintainers:
> This patch didn't make it into next yet, I guess it's too late for
> 6.17-rc1 now?
Confirmed, it didn't make it into 6.17-rc1. In next (and also v6.17-rc1)
we have:
$ git grep pwm_apply_args next/master
next/master:drivers/video/backlight/mp3309c.c: pwm_apply_args(chip->pwmd);
next/master:include/linux/pwm.h:static inline void pwm_apply_args(struct pwm_device *pwm)
next/master:include/linux/pwm.h: * PWM users calling pwm_apply_args() expect to have a fresh config
next/master:include/linux/pwm.h: * pwm_apply_args().
so this patch series is the single stopper before I can remove
pwm_apply_args().
Can we please get this into next for 6.18-rc1?
Looking at
https://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git I see
that the branches merged regularily into next (for-backlight-next +
for-backlight-fixes) still points to 6.16-rc1 and 6.10-rc1 respectively.
If that means I should better take this series (or at least the first
patch) through my tree, please tell me.
Best regards
Uwe
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-01 9:22 ` [PATCH 1/2] " Uwe Kleine-König
2025-07-07 15:48 ` EXTERNAL: " FLAVIO SULIGOI
@ 2025-08-18 9:15 ` Daniel Thompson
1 sibling, 0 replies; 12+ messages in thread
From: Daniel Thompson @ 2025-08-18 9:15 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Flavio Suligoi, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller, dri-devel, linux-fbdev, linux-pwm
On Tue, Jul 01, 2025 at 11:22:36AM +0200, Uwe Kleine-König wrote:
> pwm_apply_args() sole purpose is to initialize all parameters specified
> in the device tree for consumers that rely on pwm_config() and
> pwm_enable(). The mp3309c backlight driver uses pwm_apply_might_sleep()
> which gets passed the full configuration and so doesn't rely on the
> default being explicitly applied.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Reviewed-by: Daniel Thompson (RISCstar) <danielt@kernel.org>
Sorry for the delay. I lost track of the review on this one so Lee didn't
hoover it up!
Daniel.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset
2025-07-01 9:22 ` [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset Uwe Kleine-König
2025-07-07 15:49 ` EXTERNAL: " FLAVIO SULIGOI
@ 2025-08-18 9:16 ` Daniel Thompson
2025-09-02 10:36 ` Lee Jones
1 sibling, 1 reply; 12+ messages in thread
From: Daniel Thompson @ 2025-08-18 9:16 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Flavio Suligoi, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller, dri-devel, linux-fbdev, linux-pwm
On Tue, Jul 01, 2025 at 11:22:37AM +0200, Uwe Kleine-König wrote:
> Assigning values to a struct using a compound literal (since C99) also
> guarantees that all unspecified struct members are empty-initialized, so
> it properly replaces the memset to zero.
>
> The code looks a bit nicer and more idiomatic (though that might be
> subjective?). The resulting binary is a bit smaller. On ARCH=arm with
> an allnoconfig + minimal changes to enable the mp3309c driver the
> difference is 12 bytes.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Reviewed-by: Daniel Thompson (RISCstar) <danielt@kernel.org>
Daniel.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args()
2025-07-01 9:22 [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() Uwe Kleine-König
` (2 preceding siblings ...)
2025-07-07 15:44 ` EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() FLAVIO SULIGOI
@ 2025-09-02 10:35 ` Lee Jones
3 siblings, 0 replies; 12+ messages in thread
From: Lee Jones @ 2025-09-02 10:35 UTC (permalink / raw)
To: Flavio Suligoi, Lee Jones, Daniel Thompson, Jingoo Han,
Helge Deller, Uwe Kleine-König
Cc: Daniel Thompson, dri-devel, linux-fbdev, linux-pwm
On Tue, 01 Jul 2025 11:22:35 +0200, Uwe Kleine-König wrote:
> the first patch of this series is what I really care about: There are
> hardly any drivers left that use pwm_apply_args(). When all of them are
> converted to not use it any more, I intend to drop that function.
>
> The 2nd patch is just a change that I noticed while editing the driver
> that is IMHO nice. If you don't agree and only apply the first patch, I
> won't argue. It's an alternative approach to what Daniel Thompson did in
> commit 7ee6478d5aa9 ("backlight: mp3309c: Fully initialize
> backlight_properties during probe").
>
> [...]
Applied, thanks!
[1/2] backlight: mp3309c: Drop pwm_apply_args()
commit: d22caa15de3a11b503157aec079cad4bf305ff47
[2/2] backlight: mp3309c: Initialize backlight properties without memset
commit: 71ca0594c11b4030c6dece9ba9b080d652a82473
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset
2025-08-18 9:16 ` Daniel Thompson
@ 2025-09-02 10:36 ` Lee Jones
0 siblings, 0 replies; 12+ messages in thread
From: Lee Jones @ 2025-09-02 10:36 UTC (permalink / raw)
To: Daniel Thompson
Cc: Uwe Kleine-König, Flavio Suligoi, Daniel Thompson,
Jingoo Han, Helge Deller, dri-devel, linux-fbdev, linux-pwm
On Mon, 18 Aug 2025, Daniel Thompson wrote:
> On Tue, Jul 01, 2025 at 11:22:37AM +0200, Uwe Kleine-König wrote:
> > Assigning values to a struct using a compound literal (since C99) also
> > guarantees that all unspecified struct members are empty-initialized, so
> > it properly replaces the memset to zero.
> >
> > The code looks a bit nicer and more idiomatic (though that might be
> > subjective?). The resulting binary is a bit smaller. On ARCH=arm with
> > an allnoconfig + minimal changes to enable the mp3309c driver the
> > difference is 12 bytes.
> >
> > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
>
> Reviewed-by: Daniel Thompson (RISCstar) <danielt@kernel.org>
Looks like you cannot send tags from non-related email accounts:
NOTE: some trailers ignored due to from/email mismatches:
! Trailer: Reviewed-by: "Daniel Thompson (RISCstar)" <danielt@kernel.org>
Msg From: Daniel Thompson <daniel@riscstar.com>
I'll add the tags manually this time.
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-09-02 10:36 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-01 9:22 [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() Uwe Kleine-König
2025-07-01 9:22 ` [PATCH 1/2] " Uwe Kleine-König
2025-07-07 15:48 ` EXTERNAL: " FLAVIO SULIGOI
2025-08-18 9:15 ` Daniel Thompson
2025-07-01 9:22 ` [PATCH 2/2] backlight: mp3309c: Initialize backlight properties without memset Uwe Kleine-König
2025-07-07 15:49 ` EXTERNAL: " FLAVIO SULIGOI
2025-08-18 9:16 ` Daniel Thompson
2025-09-02 10:36 ` Lee Jones
2025-07-07 15:44 ` EXTERNAL: [PATCH 0/2] backlight: mp3309c: Drop pwm_apply_args() FLAVIO SULIGOI
2025-07-29 20:17 ` Uwe Kleine-König
2025-08-18 8:54 ` Uwe Kleine-König
2025-09-02 10:35 ` Lee Jones
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).