public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] crypto/api.c: make crypto_alg_lookup static
@ 2005-04-09 19:38 Adrian Bunk
  2005-04-10  9:18 ` Herbert Xu
  0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2005-04-09 19:38 UTC (permalink / raw)
  To: herbert, davem; +Cc: linux-crypto, linux-kernel

This patch makes a needlessly global function static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

 crypto/api.c      |    9 ++++++++-
 crypto/internal.h |    9 ---------
 2 files changed, 8 insertions(+), 10 deletions(-)

--- linux-2.6.12-rc2-mm2-full/crypto/internal.h.old	2005-04-09 21:13:40.000000000 +0200
+++ linux-2.6.12-rc2-mm2-full/crypto/internal.h	2005-04-09 21:15:14.000000000 +0200
@@ -47,15 +47,6 @@
 	return (void *)&tfm[1];
 }
 
-struct crypto_alg *crypto_alg_lookup(const char *name);
-
-/* A far more intelligent version of this is planned.  For now, just
- * try an exact match on the name of the algorithm. */
-static inline struct crypto_alg *crypto_alg_mod_lookup(const char *name)
-{
-	return try_then_request_module(crypto_alg_lookup(name), name);
-}
-
 #ifdef CONFIG_CRYPTO_HMAC
 int crypto_alloc_hmac_block(struct crypto_tfm *tfm);
 void crypto_free_hmac_block(struct crypto_tfm *tfm);
--- linux-2.6.12-rc2-mm2-full/crypto/api.c.old	2005-04-09 21:13:59.000000000 +0200
+++ linux-2.6.12-rc2-mm2-full/crypto/api.c	2005-04-09 21:15:07.000000000 +0200
@@ -33,7 +33,7 @@
 	module_put(alg->cra_module);
 }
 
-struct crypto_alg *crypto_alg_lookup(const char *name)
+static struct crypto_alg *crypto_alg_lookup(const char *name)
 {
 	struct crypto_alg *q, *alg = NULL;
 
@@ -54,6 +54,13 @@
 	return alg;
 }
 
+/* A far more intelligent version of this is planned.  For now, just
+ * try an exact match on the name of the algorithm. */
+static inline struct crypto_alg *crypto_alg_mod_lookup(const char *name)
+{
+	return try_then_request_module(crypto_alg_lookup(name), name);
+}
+
 static int crypto_init_flags(struct crypto_tfm *tfm, u32 flags)
 {
 	tfm->crt_flags = 0;


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-04-10  9:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-09 19:38 [2.6 patch] crypto/api.c: make crypto_alg_lookup static Adrian Bunk
2005-04-10  9:18 ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox