Re: [PATCH] crypto: marvell/cesa: Improving code readability

2016-04-19 Thread Boris Brezillon
On Tue, 19 Apr 2016 17:09:20 +0200 Romain Perier wrote: > When looking for available engines, the variable "engine" is > assigned to ">engines[i]" at the beginning of the for loop. Replacing > next occurences of ">engines[i]" by "engine" and in order to improve

[PATCH] crypto: marvell/cesa: Improving code readability

2016-04-19 Thread Romain Perier
When looking for available engines, the variable "engine" is assigned to ">engines[i]" at the beginning of the for loop. Replacing next occurences of ">engines[i]" by "engine" and in order to improve readability. Signed-off-by: Romain Perier ---