diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-01-22 16:56:02 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-01-27 18:58:09 +0800 |
commit | 42a9a08b9aa69134981d1564f95eb06c0469eff3 (patch) | |
tree | a70e6a1de1cc3ca36e711fd703935d3f58c2c128 /crypto | |
parent | 51c082514c2dedf2711c99d93c196cc4eedceb40 (diff) | |
download | linux-42a9a08b9aa69134981d1564f95eb06c0469eff3.tar.gz linux-42a9a08b9aa69134981d1564f95eb06c0469eff3.tar.bz2 linux-42a9a08b9aa69134981d1564f95eb06c0469eff3.zip |
crypto: engine - Fix excess parameter doc warning
The engine parameter should not be marked for kernel doc as it
triggers a warning.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/crypto_engine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/crypto_engine.c b/crypto/crypto_engine.c index bb8e77077f02..64dc9aa3ca24 100644 --- a/crypto/crypto_engine.c +++ b/crypto/crypto_engine.c @@ -499,7 +499,7 @@ EXPORT_SYMBOL_GPL(crypto_engine_stop); * This has the form: * callback(struct crypto_engine *engine) * where: - * @engine: the crypto engine structure. + * engine: the crypto engine structure. * @rt: whether this queue is set to run as a realtime task * @qlen: maximum size of the crypto-engine queue * |