Re: [PATCH][V2][next] accel/qaic: remove redundant pointer pexec

2023-08-02 Thread Jeffrey Hugo
On 8/1/2023 8:05 AM, Pranjal Ramajor Asha Kanojiya wrote: On 7/26/2023 7:36 PM, Colin Ian King wrote: Pointer pexec is being assigned a value however it is never read. The assignment is redundant and can be removed. Replace sizeof(*pexec) with sizeof the type and remove the declaration of poin

Re: [PATCH][V2][next] accel/qaic: remove redundant pointer pexec

2023-08-01 Thread Pranjal Ramajor Asha Kanojiya
On 7/26/2023 7:36 PM, Colin Ian King wrote: Pointer pexec is being assigned a value however it is never read. The assignment is redundant and can be removed. Replace sizeof(*pexec) with sizeof the type and remove the declaration of pointer pexec. Signed-off-by: Colin Ian King Reviewed-by:

[PATCH][V2][next] accel/qaic: remove redundant pointer pexec

2023-07-26 Thread Colin Ian King
Pointer pexec is being assigned a value however it is never read. The assignment is redundant and can be removed. Replace sizeof(*pexec) with sizeof the type and remove the declaration of pointer pexec. Signed-off-by: Colin Ian King --- V2: completely remove the declaration of pexec and replace