Re: [PATCH] crypto: inside-secure - initialize first_rdesc to make GCC happy

2018-07-19 Thread Herbert Xu
On Fri, Jul 13, 2018 at 05:43:16PM +0200, Antoine Tenart wrote: > In the cipher safexcel_send_req function, GCC warns that > first_rdesc may be used uninitialized. While this should never > happen, this patch removes the warning by initializing this > variable to NULL to make GCC happy. > > This w

[PATCH] crypto: inside-secure - initialize first_rdesc to make GCC happy

2018-07-13 Thread Antoine Tenart
In the cipher safexcel_send_req function, GCC warns that first_rdesc may be used uninitialized. While this should never happen, this patch removes the warning by initializing this variable to NULL to make GCC happy. This was reported by the kbuild test robot. Signed-off-by: Antoine Tenart --- d