[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20060715003540.GI3633@stusta.de>
Date: Sat, 15 Jul 2006 02:35:40 +0200
From: Adrian Bunk <bunk@...sta.de>
To: Andrew Morton <akpm@...l.org>, Michal Ludvig <michal@...ix.cz>,
Herbert Xu <herbert@...dor.apana.org.au>
Cc: linux-kernel@...r.kernel.org, davem@...emloft.net,
linux-crypto@...r.kernel.org
Subject: [-mm patch] drivers/crypto/padlock-sha.c: make 2 functions static
On Thu, Jul 13, 2006 at 10:48:00PM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.18-rc1-mm1:
>...
> git-cryptodev.patch
>
> git trees.
>...
This patch makes two needlessly global functions static.
Signed-off-by: Adrian Bunk <bunk@...sta.de>
---
drivers/crypto/padlock-sha.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- linux-2.6.18-rc1-mm2-full/drivers/crypto/padlock-sha.c.old 2006-07-14 23:25:40.000000000 +0200
+++ linux-2.6.18-rc1-mm2-full/drivers/crypto/padlock-sha.c 2006-07-14 23:25:54.000000000 +0200
@@ -112,7 +112,7 @@
*dst++ = swab32(*src++);
}
-void padlock_do_sha1(const char *in, char *out, int count)
+static void padlock_do_sha1(const char *in, char *out, int count)
{
/* We can't store directly to *out as it may be unaligned. */
/* BTW Don't reduce the buffer size below 128 Bytes!
@@ -133,7 +133,7 @@
padlock_output_block((uint32_t *)result, (uint32_t *)out, 5);
}
-void padlock_do_sha256(const char *in, char *out, int count)
+static void padlock_do_sha256(const char *in, char *out, int count)
{
/* We can't store directly to *out as it may be unaligned. */
/* BTW Don't reduce the buffer size below 128 Bytes!
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists