Commit ab7827059adbbcc3624afbc58880287eabf6d277

Authored by Adrian Bunk
Committed by David S. Miller
1 parent 5b37538a51

[CRYPTO] geode: Make needlessly global geode_aes_crypt() static

On Tue, Nov 14, 2006 at 01:41:25AM -0800, Andrew Morton wrote:
>...
> Changes since 2.6.19-rc5-mm2:
>...
>  git-cryptodev.patch
>...
>  git trees
>...

This patch makes the needlessly global geode_aes_crypt() static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

Showing 2 changed files with 1 additions and 3 deletions Side-by-side Diff

drivers/crypto/geode-aes.c
... ... @@ -97,7 +97,7 @@
97 97 return counter ? 0 : 1;
98 98 }
99 99  
100   -unsigned int
  100 +static unsigned int
101 101 geode_aes_crypt(struct geode_aes_op *op)
102 102 {
103 103  
drivers/crypto/geode-aes.h
... ... @@ -37,7 +37,5 @@
37 37 u8 iv[AES_IV_LENGTH];
38 38 };
39 39  
40   -unsigned int geode_aes_crypt(struct geode_aes_op *);
41   -
42 40 #endif