aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-07-14 21:31:25 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2006-09-20 21:41:00 -0400
commitcb17530b0a4e01bd595a7ac437467a1a9833a15c (patch)
tree4d35d00a4827790e1aeca6ec4baeea299e45cc25 /drivers/crypto
parent6c833275152b454d311f0e70b5e6bf028b4a2aaf (diff)
[CRYPTO] padlock-sha: Make 2 functions static
This patch makes two needlessly global functions static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/padlock-sha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/padlock-sha.c b/drivers/crypto/padlock-sha.c
index f7010038033b..95e9971d1a70 100644
--- a/drivers/crypto/padlock-sha.c
+++ b/drivers/crypto/padlock-sha.c
@@ -112,7 +112,7 @@ static inline void padlock_output_block(uint32_t *src,
112 *dst++ = swab32(*src++); 112 *dst++ = swab32(*src++);
113} 113}
114 114
115void padlock_do_sha1(const char *in, char *out, int count) 115static void padlock_do_sha1(const char *in, char *out, int count)
116{ 116{
117 /* We can't store directly to *out as it may be unaligned. */ 117 /* We can't store directly to *out as it may be unaligned. */
118 /* BTW Don't reduce the buffer size below 128 Bytes! 118 /* BTW Don't reduce the buffer size below 128 Bytes!
@@ -133,7 +133,7 @@ void padlock_do_sha1(const char *in, char *out, int count)
133 padlock_output_block((uint32_t *)result, (uint32_t *)out, 5); 133 padlock_output_block((uint32_t *)result, (uint32_t *)out, 5);
134} 134}
135 135
136void padlock_do_sha256(const char *in, char *out, int count) 136static void padlock_do_sha256(const char *in, char *out, int count)
137{ 137{
138 /* We can't store directly to *out as it may be unaligned. */ 138 /* We can't store directly to *out as it may be unaligned. */
139 /* BTW Don't reduce the buffer size below 128 Bytes! 139 /* BTW Don't reduce the buffer size below 128 Bytes!