Commit c9af70fb86bbede6197081ded69407a9192716c8

Authored by Richard Hartmann
Committed by Herbert Xu
1 parent d150975bc7

crypto: crypto_null - Fix checkpatch errors

Signed-off-by: Richard Hartmann <richih.mailinglist@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

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

crypto/crypto_null.c
1   -/*
  1 +/*
2 2 * Cryptographic API.
3 3 *
4 4 * Null algorithms, aka Much Ado About Nothing.
5 5 *
6 6 * These are needed for IPsec, and may be useful in general for
7 7 * testing & debugging.
8   - *
  8 + *
9 9 * The null cipher is compliant with RFC2410.
10 10 *
11 11 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
... ... @@ -163,7 +163,7 @@
163 163 static int __init crypto_null_mod_init(void)
164 164 {
165 165 int ret = 0;
166   -
  166 +
167 167 ret = crypto_register_alg(&cipher_null);
168 168 if (ret < 0)
169 169 goto out;
... ... @@ -180,7 +180,7 @@
180 180 if (ret < 0)
181 181 goto out_unregister_digest;
182 182  
183   -out:
  183 +out:
184 184 return ret;
185 185  
186 186 out_unregister_digest: