mirror of
https://github.com/torvalds/linux.git
synced 2026-03-07 23:04:33 +01:00
crypto: api - remove unnecessary forward declarations
Add the __maybe_unused attribute to the function definitions and remove the now-unnecessary forward declarations. Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
b4f275b92d
commit
a3f8e00991
8 changed files with 16 additions and 27 deletions
|
|
@ -60,10 +60,8 @@ static int __maybe_unused crypto_acomp_report(
|
|||
return nla_put(skb, CRYPTOCFGA_REPORT_ACOMP, sizeof(racomp), &racomp);
|
||||
}
|
||||
|
||||
static void crypto_acomp_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
|
||||
static void crypto_acomp_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_acomp_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
seq_puts(m, "type : acomp\n");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -151,9 +151,8 @@ static int __maybe_unused crypto_aead_report(
|
|||
return nla_put(skb, CRYPTOCFGA_REPORT_AEAD, sizeof(raead), &raead);
|
||||
}
|
||||
|
||||
static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
static void crypto_aead_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_aead_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
struct aead_alg *aead = container_of(alg, struct aead_alg, base);
|
||||
|
||||
|
|
|
|||
|
|
@ -801,9 +801,8 @@ static int __maybe_unused crypto_ahash_report(
|
|||
return nla_put(skb, CRYPTOCFGA_REPORT_HASH, sizeof(rhash), &rhash);
|
||||
}
|
||||
|
||||
static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_ahash_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
seq_printf(m, "type : ahash\n");
|
||||
seq_printf(m, "async : %s\n",
|
||||
|
|
|
|||
|
|
@ -46,10 +46,8 @@ static int __maybe_unused crypto_akcipher_report(
|
|||
sizeof(rakcipher), &rakcipher);
|
||||
}
|
||||
|
||||
static void crypto_akcipher_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
|
||||
static void crypto_akcipher_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_akcipher_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
seq_puts(m, "type : akcipher\n");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,10 +29,8 @@ static int __maybe_unused crypto_kpp_report(
|
|||
return nla_put(skb, CRYPTOCFGA_REPORT_KPP, sizeof(rkpp), &rkpp);
|
||||
}
|
||||
|
||||
static void crypto_kpp_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
|
||||
static void crypto_kpp_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_kpp_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
seq_puts(m, "type : kpp\n");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -77,9 +77,8 @@ static int __maybe_unused crypto_rng_report(
|
|||
return nla_put(skb, CRYPTOCFGA_REPORT_RNG, sizeof(rrng), &rrng);
|
||||
}
|
||||
|
||||
static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_rng_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
seq_printf(m, "type : rng\n");
|
||||
seq_printf(m, "seedsize : %u\n", seedsize(alg));
|
||||
|
|
|
|||
|
|
@ -346,9 +346,8 @@ static int __maybe_unused crypto_shash_report(
|
|||
return nla_put(skb, CRYPTOCFGA_REPORT_HASH, sizeof(rhash), &rhash);
|
||||
}
|
||||
|
||||
static void crypto_shash_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
static void crypto_shash_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_shash_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
struct shash_alg *salg = __crypto_shash_alg(alg);
|
||||
|
||||
|
|
|
|||
|
|
@ -570,9 +570,8 @@ static void crypto_skcipher_free_instance(struct crypto_instance *inst)
|
|||
skcipher->free(skcipher);
|
||||
}
|
||||
|
||||
static void crypto_skcipher_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
__maybe_unused;
|
||||
static void crypto_skcipher_show(struct seq_file *m, struct crypto_alg *alg)
|
||||
static void __maybe_unused crypto_skcipher_show(struct seq_file *m,
|
||||
struct crypto_alg *alg)
|
||||
{
|
||||
struct skcipher_alg *skcipher = __crypto_skcipher_alg(alg);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue