git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0df30b
)
[CRYPTO] lrw: Replace all adds to big endians variables with be*_add_cpu
author
Marcin Slusarz
<marcin.slusarz@gmail.com>
Fri, 14 Mar 2008 08:22:53 +0000
(16:22 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Mon, 21 Apr 2008 02:19:22 +0000
(10:19 +0800)
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: Marcin Slusarz <marcin.slusarz@gmail.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
No differences found