]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
lib/mpi: mpi_read_buffer(): replace open coded endian conversion
authorNicolai Stange <nicstange@gmail.com>
Tue, 22 Mar 2016 12:12:41 +0000 (13:12 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 5 Apr 2016 12:35:49 +0000 (20:35 +0800)
commit90f864e20029600a8dc33e27b1192af4636100d4
tree73eba1689c2e633581f9fc84b2e1baf55d838d45
parentf00fa2417b3e1252b1a761f88731af03afff4407
lib/mpi: mpi_read_buffer(): replace open coded endian conversion

Currently, the endian conversion from CPU order to BE is open coded in
mpi_read_buffer().

Replace this by the centrally provided cpu_to_be*() macros.
Copy from the temporary storage on stack to the destination buffer
by means of memcpy().

Signed-off-by: Nicolai Stange <nicstange@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
lib/mpi/mpicoder.c