* [PATCH] pwm: Use of_property_read_bool()
@ 2024-07-31 19:13 Rob Herring (Arm)
2024-08-01 8:41 ` Uwe Kleine-König
0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring (Arm) @ 2024-07-31 19:13 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: linux-pwm, linux-kernel
Use of_property_read_bool() to read boolean properties rather than
of_get_property(). This is part of a larger effort to remove callers
of of_get_property() and similar functions. of_get_property() leaks
the DT property data pointer which is a problem for dynamically
allocated nodes which may be freed.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
drivers/pwm/pwm-omap-dmtimer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pwm/pwm-omap-dmtimer.c b/drivers/pwm/pwm-omap-dmtimer.c
index cd51c4a938f5..e514f3614c43 100644
--- a/drivers/pwm/pwm-omap-dmtimer.c
+++ b/drivers/pwm/pwm-omap-dmtimer.c
@@ -355,7 +355,7 @@ static int pwm_omap_dmtimer_probe(struct platform_device *pdev)
goto err_platdata;
}
- if (!of_get_property(timer, "ti,timer-pwm", NULL)) {
+ if (!of_property_read_bool(timer, "ti,timer-pwm")) {
dev_err(&pdev->dev, "Missing ti,timer-pwm capability\n");
ret = -ENODEV;
goto err_timer_property;
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] pwm: Use of_property_read_bool()
2024-07-31 19:13 [PATCH] pwm: Use of_property_read_bool() Rob Herring (Arm)
@ 2024-08-01 8:41 ` Uwe Kleine-König
2024-09-03 19:19 ` Rob Herring
0 siblings, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2024-08-01 8:41 UTC (permalink / raw)
To: Rob Herring (Arm); +Cc: linux-pwm, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 672 bytes --]
Hello,
On Wed, Jul 31, 2024 at 01:13:03PM -0600, Rob Herring (Arm) wrote:
> Use of_property_read_bool() to read boolean properties rather than
> of_get_property(). This is part of a larger effort to remove callers
> of of_get_property() and similar functions. of_get_property() leaks
> the DT property data pointer which is a problem for dynamically
> allocated nodes which may be freed.
>
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---
> drivers/pwm/pwm-omap-dmtimer.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Looks good to me. Unless you object I'd apply with adding
"omap-dmtimer: " to the short log.
Best regards
Uwe
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] pwm: Use of_property_read_bool()
2024-08-01 8:41 ` Uwe Kleine-König
@ 2024-09-03 19:19 ` Rob Herring
2024-09-04 7:29 ` Uwe Kleine-König
0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring @ 2024-09-03 19:19 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: linux-pwm, linux-kernel
On Thu, Aug 1, 2024 at 3:41 AM Uwe Kleine-König
<u.kleine-koenig@baylibre.com> wrote:
>
> Hello,
>
> On Wed, Jul 31, 2024 at 01:13:03PM -0600, Rob Herring (Arm) wrote:
> > Use of_property_read_bool() to read boolean properties rather than
> > of_get_property(). This is part of a larger effort to remove callers
> > of of_get_property() and similar functions. of_get_property() leaks
> > the DT property data pointer which is a problem for dynamically
> > allocated nodes which may be freed.
> >
> > Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> > ---
> > drivers/pwm/pwm-omap-dmtimer.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Looks good to me. Unless you object I'd apply with adding
> "omap-dmtimer: " to the short log.
No objection and sorry I missed that.
Rob
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] pwm: Use of_property_read_bool()
2024-09-03 19:19 ` Rob Herring
@ 2024-09-04 7:29 ` Uwe Kleine-König
0 siblings, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2024-09-04 7:29 UTC (permalink / raw)
To: Rob Herring; +Cc: linux-pwm, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1100 bytes --]
On Tue, Sep 03, 2024 at 02:19:01PM -0500, Rob Herring wrote:
> On Thu, Aug 1, 2024 at 3:41 AM Uwe Kleine-König
> <u.kleine-koenig@baylibre.com> wrote:
> >
> > Hello,
> >
> > On Wed, Jul 31, 2024 at 01:13:03PM -0600, Rob Herring (Arm) wrote:
> > > Use of_property_read_bool() to read boolean properties rather than
> > > of_get_property(). This is part of a larger effort to remove callers
> > > of of_get_property() and similar functions. of_get_property() leaks
> > > the DT property data pointer which is a problem for dynamically
> > > allocated nodes which may be freed.
> > >
> > > Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> > > ---
> > > drivers/pwm/pwm-omap-dmtimer.c | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > Looks good to me. Unless you object I'd apply with adding
> > "omap-dmtimer: " to the short log.
>
> No objection and sorry I missed that.
No problem for me, applied with the mentioned change to the short log to
https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git pwm/for-next
.
Best regards
Uwe
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-04 7:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-31 19:13 [PATCH] pwm: Use of_property_read_bool() Rob Herring (Arm)
2024-08-01 8:41 ` Uwe Kleine-König
2024-09-03 19:19 ` Rob Herring
2024-09-04 7:29 ` Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®