diff options
| author | Cong Wang <amwang@redhat.com> | 2011-11-25 23:14:17 +0800 | 
|---|---|---|
| committer | Cong Wang <xiyou.wangcong@gmail.com> | 2012-03-20 21:48:16 +0800 | 
| commit | f0dfc0b0b7f3d961da8a98bcfccc8be9107a848b (patch) | |
| tree | 41cd58ad3ed1a96381984ba8047d9887b951f1cb /crypto/blkcipher.c | |
| parent | 8fd75e1216e0ba601a746177e6c102d5593b572f (diff) | |
| download | olio-linux-3.10-f0dfc0b0b7f3d961da8a98bcfccc8be9107a848b.tar.xz olio-linux-3.10-f0dfc0b0b7f3d961da8a98bcfccc8be9107a848b.zip  | |
crypto: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
Diffstat (limited to 'crypto/blkcipher.c')
| -rw-r--r-- | crypto/blkcipher.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/blkcipher.c b/crypto/blkcipher.c index 1e61d1a888b..4dd80c72549 100644 --- a/crypto/blkcipher.c +++ b/crypto/blkcipher.c @@ -43,22 +43,22 @@ static int blkcipher_walk_first(struct blkcipher_desc *desc,  static inline void blkcipher_map_src(struct blkcipher_walk *walk)  { -	walk->src.virt.addr = scatterwalk_map(&walk->in, 0); +	walk->src.virt.addr = scatterwalk_map(&walk->in);  }  static inline void blkcipher_map_dst(struct blkcipher_walk *walk)  { -	walk->dst.virt.addr = scatterwalk_map(&walk->out, 1); +	walk->dst.virt.addr = scatterwalk_map(&walk->out);  }  static inline void blkcipher_unmap_src(struct blkcipher_walk *walk)  { -	scatterwalk_unmap(walk->src.virt.addr, 0); +	scatterwalk_unmap(walk->src.virt.addr);  }  static inline void blkcipher_unmap_dst(struct blkcipher_walk *walk)  { -	scatterwalk_unmap(walk->dst.virt.addr, 1); +	scatterwalk_unmap(walk->dst.virt.addr);  }  /* Get a spot of the specified length that does not straddle a page.  |