Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: proc - Removing some useless only space lines

Some line got only spaces, remove them

Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Corentin Labbe and committed by
Herbert Xu
fde2f57c 3cea6b36

+2 -2
+2 -2
crypto/proc.c
··· 36 36 static int c_show(struct seq_file *m, void *p) 37 37 { 38 38 struct crypto_alg *alg = list_entry(p, struct crypto_alg, cra_list); 39 - 39 + 40 40 seq_printf(m, "name : %s\n", alg->cra_name); 41 41 seq_printf(m, "driver : %s\n", alg->cra_driver_name); 42 42 seq_printf(m, "module : %s\n", module_name(alg->cra_module)); ··· 59 59 alg->cra_type->show(m, alg); 60 60 goto out; 61 61 } 62 - 62 + 63 63 switch (alg->cra_flags & CRYPTO_ALG_TYPE_MASK) { 64 64 case CRYPTO_ALG_TYPE_CIPHER: 65 65 seq_printf(m, "type : cipher\n");