Commit 54b14f40c5b13aeb179f68d82214e728617d5704

Authored by Fabian Frederick
Committed by Linus Torvalds
1 parent 38b4fe5fcc

lib/digsig.c: kernel-doc warning fixes

Small typo and @return: -> Returns ...

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 3 additions and 2 deletions Side-by-side Diff

... ... @@ -175,10 +175,11 @@
175 175 * digsig_verify() - digital signature verification with public key
176 176 * @keyring: keyring to search key in
177 177 * @sig: digital signature
178   - * @sigen: length of the signature
  178 + * @siglen: length of the signature
179 179 * @data: data
180 180 * @datalen: length of the data
181   - * @return: 0 on success, -EINVAL otherwise
  181 + *
  182 + * Returns 0 on success, -EINVAL otherwise
182 183 *
183 184 * Verifies data integrity against digital signature.
184 185 * Currently only RSA is supported.