Skip to content

Commit

Permalink
[CRYPTO] geode: Make needlessly global geode_aes_crypt() static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Adrian Bunk authored and David S. Miller committed Dec 7, 2006
1 parent 5b37538 commit ab78270
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/crypto/geode-aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ do_crypt(void *src, void *dst, int len, u32 flags)
return counter ? 0 : 1;
}

unsigned int
static unsigned int
geode_aes_crypt(struct geode_aes_op *op)
{

Expand Down
2 changes: 0 additions & 2 deletions drivers/crypto/geode-aes.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ struct geode_aes_op {
u8 iv[AES_IV_LENGTH];
};

unsigned int geode_aes_crypt(struct geode_aes_op *);

#endif

0 comments on commit ab78270

Please sign in to comment.