Re: [PATCH v2] gpu: ipu-v3: Add cleanup attribute for prg_node for auto cleanup

2024-08-13 Thread Abhinav Jain
On Tue, 13 Aug 2024 02:30:54 -0600, Shuah Khan wrote: > On 8/12/24 13:37, Abhinav Jain wrote: > > Hello, > > Can this be kindly reviewed? Thanks. > > You removed all the relevant information for people to be able to review the > patch :) > > thanks, > -- Shuah So

[PATCH v2] gpu: ipu-v3: Add cleanup attribute for prg_node for auto cleanup

2024-08-12 Thread Abhinav Jain
Hello, Can this be kindly reviewed? Thanks.

Re: [PATCH] gpu: ipu-v3: Removal of of_node_put with __free for auto cleanup

2024-07-04 Thread Abhinav Jain
> Javier Carrasco Hi Javier, Thank you for the detailed feedback. I have modified the patch subject as well as the commit description to better fit the cleanup task being done. PATCH v2: https://lore.kernel.org/all/20240704132142.1003887-1-jain.abhinav...@gmail.com/ Best Regards, Abhinav Jain

[PATCH v2] gpu: ipu-v3: Add cleanup attribute for prg_node for auto cleanup

2024-07-04 Thread Abhinav Jain
Add cleanup attribute for device node prg_node. Remove of_node_put for device node prg_node as it is unnecessary now. Suggested-by: Julia Lawall Signed-off-by: Abhinav Jain --- - PATCH v1: https://lore.kernel.org/all/20240702150109.1002065-1-jain.abhinav...@gmail.com/ - Changes since v1

[PATCH] gpu: ipu-v3: Removal of of_node_put with __free for auto cleanup

2024-07-02 Thread Abhinav Jain
Remove of_node_put for device node prg_node. Suggested-by: Julia Lawall Signed-off-by: Abhinav Jain --- drivers/gpu/ipu-v3/ipu-prg.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/ipu-v3/ipu-prg.c b/drivers/gpu/ipu-v3/ipu-prg.c index 729605709955

[PATCH] gpu: ipu-v3: Removal of of_node_put with __free for auto cleanup

2024-07-02 Thread Abhinav Jain
Remove of_node_put from device node of_node. Move declaration to initialization for ensuring scope sanity. Signed-off-by: Abhinav Jain --- drivers/gpu/ipu-v3/ipu-common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/ipu-v3/ipu-common.c b/drivers/gpu/ipu