Skip to content
Commit fd4609a8 authored by Marcin Slusarz's avatar Marcin Slusarz Committed by Herbert Xu
Browse files

[CRYPTO] lrw: Replace all adds to big endians variables with be*_add_cpu



replace all:
big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) +
					expression_in_cpu_byteorder);
with:
	beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder);

Signed-off-by: default avatarMarcin Slusarz <marcin.slusarz@gmail.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent f0df30b1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment