Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab782705 authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller
Browse files

[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: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 5b37538a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -97,7 +97,7 @@ do_crypt(void *src, void *dst, int len, u32 flags)
	return counter ? 0 : 1;
	return counter ? 0 : 1;
}
}


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


+0 −2
Original line number Original line Diff line number Diff line
@@ -37,6 +37,4 @@ struct geode_aes_op {
	u8 iv[AES_IV_LENGTH];
	u8 iv[AES_IV_LENGTH];
};
};


unsigned int geode_aes_crypt(struct geode_aes_op *);

#endif
#endif