]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
lib/mpi: mpi_write_sgl(): purge redundant pointer arithmetic
authorNicolai Stange <nicstange@gmail.com>
Tue, 22 Mar 2016 12:12:37 +0000 (13:12 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 5 Apr 2016 12:35:48 +0000 (20:35 +0800)
commitea122be0b8f788b30e71ed5536fddc05f5ddff86
tree2d0080d5655a78108607e78b2d5f150916384aa7
parent654842ef53d7820129a751f5cc620e5a69c694a9
lib/mpi: mpi_write_sgl(): purge redundant pointer arithmetic

Within the copying loop in mpi_write_sgl(), we have

  if (lzeros) {
    ...
    p -= lzeros;
    y = lzeros;
  }
  p = p - (sizeof(alimb) - y);

If lzeros == 0, then y == 0, too. Thus, lzeros gets subtracted and added
back again to p.

Purge this redundancy.

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