Re: [PATCH] crypto: chelsio: remove redundant premature assignment to iv

2020-05-27 Thread Ayush Sawal
Hi Colin, On 5/27/2020 4:59 PM, Colin King wrote: From: Colin Ian King Variable iv is being assigned twice with the same value, the first assignment is redundant and can be removed and instead keep the latter assignment of iv as it is closer to the point it is being used. Addresses-Coverity:

[PATCH] crypto: chelsio: remove redundant premature assignment to iv

2020-05-27 Thread Colin King
From: Colin Ian King Variable iv is being assigned twice with the same value, the first assignment is redundant and can be removed and instead keep the latter assignment of iv as it is closer to the point it is being used. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King ---