Re: [PATCH-next v3] drm/amdgpu: Cleanup shift coding style

2024-11-10 Thread Advait Dhamorikar
Hello, I have addressed the previous comments, Is there something more that I need to address in this version of the patch? I would appreciate feedback. Best regards, Advait On Wed, 9 Oct 2024 at 00:46, Advait Dhamorikar wrote: > > Improves the coding style by updating bit-shift > operations in

Re: [PATCH-next v3] drm/amdgpu: Cleanup shift coding style

2024-11-08 Thread Alex Deucher
Applied. Thanks! Sorry for the delay. Alex On Fri, Nov 8, 2024 at 10:11 AM Advait Dhamorikar wrote: > > Hello, > > I have addressed the previous comments, > Is there something more that I need to address in this version of the patch? > I would appreciate feedback. > > Best regards, > Advait >

[PATCH-next v3] drm/amdgpu: Cleanup shift coding style

2024-10-09 Thread Advait Dhamorikar
Improves the coding style by updating bit-shift operations in the amdgpu_jpeg.c driver file. It ensures consistency and avoids potential issues by explicitly using 1U and 1ULL for unsigned and unsigned long long shifts in all relevant instances. Signed-off-by: Advait Dhamorikar --- v1->v2: addre