diff options
author | Stanimir Varbanov <svarbanov@mm-sol.com> | 2014-07-04 18:03:29 +0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-07-08 17:18:21 +0400 |
commit | 58a6535f1a830f55076b82063dc83dc2a9fadf23 (patch) | |
tree | c6ddbdcda3b363f1d8aaad05d66f0076c5285af1 /drivers/crypto/qce/common.h | |
parent | 178f827a60becdcff67df61cc9f0200fcce93f6c (diff) | |
download | linux-58a6535f1a830f55076b82063dc83dc2a9fadf23.tar.xz |
crypto: qce - fix sparse warnings
Fix few sparse warnings of type:
- sparse: incorrect type in argument
- sparse: incorrect type in initializer
Signed-off-by: Stanimir Varbanov <svarbanov@mm-sol.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/qce/common.h')
-rw-r--r-- | drivers/crypto/qce/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/qce/common.h b/drivers/crypto/qce/common.h index 411b1fc97216..a4addd4f7d6c 100644 --- a/drivers/crypto/qce/common.h +++ b/drivers/crypto/qce/common.h @@ -85,7 +85,7 @@ struct qce_alg_template { struct list_head entry; u32 crypto_alg_type; unsigned long alg_flags; - const __be32 *std_iv; + const u32 *std_iv; union { struct crypto_alg crypto; struct ahash_alg ahash; |