Re: [PATCH] backlight: sky81452-backlight: replace of_node_put with __free
From: Julia Lawall <julia.lawall@inria.fr>
Date: 2024-05-01 14:19:45
Also in:
dri-devel, lkml
From: Julia Lawall <julia.lawall@inria.fr>
Date: 2024-05-01 14:19:45
Also in:
dri-devel, lkml
On Wed, 1 May 2024, Daniel Thompson wrote:
On Wed, May 01, 2024 at 06:21:46PM +0530, R Sundar wrote:quoted
Use the new cleanup magic to replace of_node_put() with __free(device_node) marking to auto release when they get out of scope. Suggested-by: Julia Lawall <julia.lawall@inria.fr> Signed-off-by: R Sundar <redacted>Thanks for the patch but I think this one is a more appropriate solution to this issue: https://lore.kernel.org/all/20240421104916.312588-2-shresthprasad7@gmail.com/ (local)
Maybe neither one is perfect? The one I see at that link has:
if (!pdata) {
- of_node_put(np);
return ERR_PTR(-ENOMEM);
}
which has unneeded {}
julia
Daniel.