Commit 6f0be9b2 authored by Tom Lendacky's avatar Tom Lendacky Committed by Herbert Xu

crypto: ccp - Fix sparse warnings in ccp-crypto-sha.c

The sha initialization data generated the following sparse warnings:

   sparse: incorrect type in initializer (different base types)
      expected unsigned int
      got restricted __be32 [usertype] <noident>

Change the initialization data type from u32 to __be32.
Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent e37b94eb
...@@ -324,20 +324,20 @@ static void ccp_hmac_sha_cra_exit(struct crypto_tfm *tfm) ...@@ -324,20 +324,20 @@ static void ccp_hmac_sha_cra_exit(struct crypto_tfm *tfm)
ccp_sha_cra_exit(tfm); ccp_sha_cra_exit(tfm);
} }
static const u32 sha1_init[CCP_SHA_CTXSIZE / sizeof(u32)] = { static const __be32 sha1_init[CCP_SHA_CTXSIZE / sizeof(__be32)] = {
cpu_to_be32(SHA1_H0), cpu_to_be32(SHA1_H1), cpu_to_be32(SHA1_H0), cpu_to_be32(SHA1_H1),
cpu_to_be32(SHA1_H2), cpu_to_be32(SHA1_H3), cpu_to_be32(SHA1_H2), cpu_to_be32(SHA1_H3),
cpu_to_be32(SHA1_H4), 0, 0, 0, cpu_to_be32(SHA1_H4), 0, 0, 0,
}; };
static const u32 sha224_init[CCP_SHA_CTXSIZE / sizeof(u32)] = { static const __be32 sha224_init[CCP_SHA_CTXSIZE / sizeof(__be32)] = {
cpu_to_be32(SHA224_H0), cpu_to_be32(SHA224_H1), cpu_to_be32(SHA224_H0), cpu_to_be32(SHA224_H1),
cpu_to_be32(SHA224_H2), cpu_to_be32(SHA224_H3), cpu_to_be32(SHA224_H2), cpu_to_be32(SHA224_H3),
cpu_to_be32(SHA224_H4), cpu_to_be32(SHA224_H5), cpu_to_be32(SHA224_H4), cpu_to_be32(SHA224_H5),
cpu_to_be32(SHA224_H6), cpu_to_be32(SHA224_H7), cpu_to_be32(SHA224_H6), cpu_to_be32(SHA224_H7),
}; };
static const u32 sha256_init[CCP_SHA_CTXSIZE / sizeof(u32)] = { static const __be32 sha256_init[CCP_SHA_CTXSIZE / sizeof(__be32)] = {
cpu_to_be32(SHA256_H0), cpu_to_be32(SHA256_H1), cpu_to_be32(SHA256_H0), cpu_to_be32(SHA256_H1),
cpu_to_be32(SHA256_H2), cpu_to_be32(SHA256_H3), cpu_to_be32(SHA256_H2), cpu_to_be32(SHA256_H3),
cpu_to_be32(SHA256_H4), cpu_to_be32(SHA256_H5), cpu_to_be32(SHA256_H4), cpu_to_be32(SHA256_H5),
...@@ -347,7 +347,7 @@ static const u32 sha256_init[CCP_SHA_CTXSIZE / sizeof(u32)] = { ...@@ -347,7 +347,7 @@ static const u32 sha256_init[CCP_SHA_CTXSIZE / sizeof(u32)] = {
struct ccp_sha_def { struct ccp_sha_def {
const char *name; const char *name;
const char *drv_name; const char *drv_name;
const u32 *init; const __be32 *init;
enum ccp_sha_type type; enum ccp_sha_type type;
u32 digest_size; u32 digest_size;
u32 block_size; u32 block_size;
......
...@@ -39,7 +39,7 @@ struct ccp_crypto_ablkcipher_alg { ...@@ -39,7 +39,7 @@ struct ccp_crypto_ablkcipher_alg {
struct ccp_crypto_ahash_alg { struct ccp_crypto_ahash_alg {
struct list_head entry; struct list_head entry;
const u32 *init; const __be32 *init;
u32 type; u32 type;
u32 mode; u32 mode;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment