]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
crypto: qce - fix sparse warnings
authorStanimir Varbanov <svarbanov@mm-sol.com>
Fri, 4 Jul 2014 14:03:29 +0000 (17:03 +0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 8 Jul 2014 13:18:21 +0000 (21:18 +0800)
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>
drivers/crypto/qce/common.c
drivers/crypto/qce/common.h
drivers/crypto/qce/sha.c

index 1cd4d5ea81144f209bec378625dc8d5edcfea582..1fb5fde7fc0349cb72ba272668b92ba35fee522a 100644 (file)
@@ -201,7 +201,8 @@ static void qce_xtskey(struct qce_device *qce, const u8 *enckey,
        unsigned int xtsklen = enckeylen / (2 * sizeof(u32));
        unsigned int xtsdusize;
 
-       qce_cpu_to_be32p_array(xtskey, enckey + enckeylen / 2, enckeylen / 2);
+       qce_cpu_to_be32p_array((__be32 *)xtskey, enckey + enckeylen / 2,
+                              enckeylen / 2);
        qce_write_array(qce, REG_ENCR_XTS_KEY0, xtskey, xtsklen);
 
        /* xts du size 512B */
@@ -262,7 +263,8 @@ static int qce_setup_regs_ahash(struct crypto_async_request *async_req,
                u32 authkey_words = rctx->authklen / sizeof(u32);
 
                qce_cpu_to_be32p_array(mackey, rctx->authkey, rctx->authklen);
-               qce_write_array(qce, REG_AUTH_KEY0, mackey, authkey_words);
+               qce_write_array(qce, REG_AUTH_KEY0, (u32 *)mackey,
+                               authkey_words);
        }
 
        if (IS_CMAC(rctx->flags))
@@ -274,12 +276,13 @@ static int qce_setup_regs_ahash(struct crypto_async_request *async_req,
                qce_cpu_to_be32p_array(auth, rctx->digest, digestsize);
 
        iv_words = (IS_SHA1(rctx->flags) || IS_SHA1_HMAC(rctx->flags)) ? 5 : 8;
-       qce_write_array(qce, REG_AUTH_IV0, auth, iv_words);
+       qce_write_array(qce, REG_AUTH_IV0, (u32 *)auth, iv_words);
 
        if (rctx->first_blk)
                qce_clear_array(qce, REG_AUTH_BYTECNT0, 4);
        else
-               qce_write_array(qce, REG_AUTH_BYTECNT0, rctx->byte_count, 2);
+               qce_write_array(qce, REG_AUTH_BYTECNT0,
+                               (u32 *)rctx->byte_count, 2);
 
        auth_cfg = qce_auth_cfg(rctx->flags, 0);
 
@@ -354,7 +357,7 @@ static int qce_setup_regs_ablkcipher(struct crypto_async_request *async_req,
                return -EINVAL;
        }
 
-       qce_write_array(qce, REG_ENCR_KEY0, enckey, enckey_words);
+       qce_write_array(qce, REG_ENCR_KEY0, (u32 *)enckey, enckey_words);
 
        if (!IS_ECB(flags)) {
                if (IS_XTS(flags))
@@ -362,7 +365,7 @@ static int qce_setup_regs_ablkcipher(struct crypto_async_request *async_req,
                else
                        qce_cpu_to_be32p_array(enciv, rctx->iv, ivsize);
 
-               qce_write_array(qce, REG_CNTR0_IV0, enciv, enciv_words);
+               qce_write_array(qce, REG_CNTR0_IV0, (u32 *)enciv, enciv_words);
        }
 
        if (IS_ENCRYPT(flags))
index 411b1fc97216a1a32b4cd0185fef34a17117d83b..a4addd4f7d6cfac37236eccb387f798e6b80d604 100644 (file)
@@ -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;
index 3c33ac9c8cba04a4ad83cb4c41a2cfd3ece041a1..f3385934eed2334de7efa95f2e9d0c41d30209fe 100644 (file)
 
 static LIST_HEAD(ahash_algs);
 
-static const __be32 std_iv_sha1[SHA256_DIGEST_SIZE / sizeof(__be32)] = {
+static const u32 std_iv_sha1[SHA256_DIGEST_SIZE / sizeof(u32)] = {
        SHA1_H0, SHA1_H1, SHA1_H2, SHA1_H3, SHA1_H4, 0, 0, 0
 };
 
-static const __be32 std_iv_sha256[SHA256_DIGEST_SIZE / sizeof(__be32)] = {
+static const u32 std_iv_sha256[SHA256_DIGEST_SIZE / sizeof(u32)] = {
        SHA256_H0, SHA256_H1, SHA256_H2, SHA256_H3,
        SHA256_H4, SHA256_H5, SHA256_H6, SHA256_H7
 };
@@ -132,7 +132,7 @@ static int qce_ahash_init(struct ahash_request *req)
 {
        struct qce_sha_reqctx *rctx = ahash_request_ctx(req);
        struct qce_alg_template *tmpl = to_ahash_tmpl(req->base.tfm);
-       const __be32 *std_iv = tmpl->std_iv;
+       const u32 *std_iv = tmpl->std_iv;
 
        memset(rctx, 0, sizeof(*rctx));
        rctx->first_blk = true;
@@ -156,15 +156,15 @@ static int qce_ahash_export(struct ahash_request *req, void *out)
                struct sha1_state *out_state = out;
 
                out_state->count = rctx->count;
-               qce_cpu_to_be32p_array(out_state->state, rctx->digest,
-                                      digestsize);
+               qce_cpu_to_be32p_array((__be32 *)out_state->state,
+                                      rctx->digest, digestsize);
                memcpy(out_state->buffer, rctx->buf, blocksize);
        } else if (IS_SHA256(flags) || IS_SHA256_HMAC(flags)) {
                struct sha256_state *out_state = out;
 
                out_state->count = rctx->count;
-               qce_cpu_to_be32p_array(out_state->state, rctx->digest,
-                                      digestsize);
+               qce_cpu_to_be32p_array((__be32 *)out_state->state,
+                                      rctx->digest, digestsize);
                memcpy(out_state->buf, rctx->buf, blocksize);
        } else {
                return -EINVAL;
@@ -199,8 +199,8 @@ static int qce_import_common(struct ahash_request *req, u64 in_count,
                        count += SHA_PADDING;
        }
 
-       rctx->byte_count[0] = (__be32)(count & ~SHA_PADDING_MASK);
-       rctx->byte_count[1] = (__be32)(count >> 32);
+       rctx->byte_count[0] = (__force __be32)(count & ~SHA_PADDING_MASK);
+       rctx->byte_count[1] = (__force __be32)(count >> 32);
        qce_cpu_to_be32p_array((__be32 *)rctx->digest, (const u8 *)state,
                               digestsize);
        rctx->buflen = (unsigned int)(in_count & (blocksize - 1));
@@ -454,7 +454,7 @@ struct qce_ahash_def {
        unsigned int digestsize;
        unsigned int blocksize;
        unsigned int statesize;
-       const __be32 *std_iv;
+       const u32 *std_iv;
 };
 
 static const struct qce_ahash_def ahash_def[] = {