diff options
author | Daniel Kestrel <kestrel1974@t-online.de> | 2021-06-15 17:33:24 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-01-06 00:23:02 +0100 |
commit | 6ade9d1ddac660e7f06116359c0812adde86bf9e (patch) | |
tree | 4c7af1344afbb7137f3a6a5efd47cfebdd15dd90 /package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c | |
parent | 0470b05b568c9d9b7188e83c1303d0acac64921d (diff) | |
download | upstream-6ade9d1ddac660e7f06116359c0812adde86bf9e.tar.gz upstream-6ade9d1ddac660e7f06116359c0812adde86bf9e.tar.bz2 upstream-6ade9d1ddac660e7f06116359c0812adde86bf9e.zip |
ltq-deu: remove compiler warning and shorten locked sections
Removing hash pointer in _hmac_setkey since its not needed and causes
a compiler warning.
Make the spinlock control sections shorter and move initializations
out of the control sections to free the spinlock faster for allowing
other threads to use the hash engine.
Minor improvements for indentation and removal of blanks and blank
lines in some areas.
Signed-off-by: Daniel Kestrel <kestrel1974@t-online.de>
Diffstat (limited to 'package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c')
-rw-r--r-- | package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c b/package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c index a55766a4ac..e0adc18d62 100644 --- a/package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c +++ b/package/kernel/lantiq/ltq-deu/src/ifxmips_aes.c @@ -343,7 +343,6 @@ int ctr_rfc3686_aes_set_key_skcipher (struct crypto_skcipher *tfm, const uint8_t return ctr_rfc3686_aes_set_key(crypto_skcipher_tfm(tfm), in_key, key_len); } - /*! \fn void ifx_deu_aes (void *ctx_arg, u8 *out_arg, const u8 *in_arg, u8 *iv_arg, u32 nbytes, int encdec, int mode) * \ingroup IFX_AES_FUNCTIONS * \brief main interface with deu hardware in DMA mode @@ -572,7 +571,6 @@ struct skcipher_alg ifxdeu_ecb_aes_alg = { .decrypt = ecb_aes_decrypt, }; - /*! \fn int ecb_aes_encrypt(struct skcipher_req *req) * \ingroup IFX_AES_FUNCTIONS * \brief CBC AES encrypt using linux crypto skcipher @@ -736,7 +734,6 @@ struct skcipher_alg ifxdeu_ofb_aes_alg = { .decrypt = ofb_aes_decrypt, }; - /*! \fn int cfb_aes_encrypt(struct skcipher_req *req) * \ingroup IFX_AES_FUNCTIONS * \brief CFB AES encrypt using linux crypto skcipher @@ -825,7 +822,6 @@ struct skcipher_alg ifxdeu_cfb_aes_alg = { .decrypt = cfb_aes_decrypt, }; - /*! \fn int ctr_basic_aes_encrypt(struct skcipher_req *req) * \ingroup IFX_AES_FUNCTIONS * \brief Counter mode AES encrypt using linux crypto skcipher @@ -913,7 +909,6 @@ struct skcipher_alg ifxdeu_ctr_basic_aes_alg = { .decrypt = ctr_basic_aes_decrypt, }; - /*! \fn int ctr_rfc3686_aes_encrypt(struct skcipher_req *req) * \ingroup IFX_AES_FUNCTIONS * \brief Counter mode AES (rfc3686) encrypt using linux crypto skcipher @@ -1021,7 +1016,6 @@ struct skcipher_alg ifxdeu_ctr_rfc3686_aes_alg = { .decrypt = ctr_rfc3686_aes_decrypt, }; - /*! \fn int ifxdeu_init_aes (void) * \ingroup IFX_AES_FUNCTIONS * \brief function to initialize AES driver |