RE: [PATCH] drm/amdgpu: fix logically dead code

2025-09-08 Thread Kandpal, Suraj
> Thanks for the feedback, I will update the patch to include the correct > changes. You sent this in HTML format please make sure your email client always sends mail to mailing list in plain text Regards, Suraj Kandpal

Re: [PATCH] drm/amdgpu: fix logically dead code

2025-09-07 Thread chelsy ratnawat
Thanks for the feedback, I will update the patch to include the correct changes. On Mon, Sep 8, 2025 at 9:55 AM Kandpal, Suraj wrote: > > Subject: [PATCH] drm/amdgpu: fix logically dead code > > The prefix here is wrong it should be drm/drm_dp_helper since that's where >

RE: [PATCH] drm/amdgpu: fix logically dead code

2025-09-07 Thread Kandpal, Suraj
> Subject: [PATCH] drm/amdgpu: fix logically dead code The prefix here is wrong it should be drm/drm_dp_helper since that's where you end up doing change and not in amdgpu > > The ternary operator inside the if block is redundant because the condition is > always tru

[PATCH] drm/amdgpu: fix logically dead code

2025-09-06 Thread Chelsy Ratnawat
The ternary operator inside the if block is redundant because the condition is always true in that context. This patch removes the unnecessary check and returns `ret` directly. Signed-off-by: Chelsy Ratnawat --- drivers/gpu/drm/display/drm_dp_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 d