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

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

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 "&cesa->engines[i]" at the beginning of the for loop. Replacing > next occurences of "&cesa->engines[i]" by "engine" and in order to improve > readability. > > Sig

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

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