]> git.hungrycats.org Git - linux/commitdiff
[CRYPTO]: Deinline large function in blowfish.c
authorAndrew Morton <akpm@osdl.org>
Thu, 21 Oct 2004 14:52:23 +0000 (07:52 -0700)
committerDavid S. Miller <davem@nuts.davemloft.net>
Thu, 21 Oct 2004 14:52:23 +0000 (07:52 -0700)
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
crypto/blowfish.c

index b6bea821c05f3f25d03b073005b97ee43b112bff..83d575557c57ec0f4290eaa262e7ea7a480bb68b 100644 (file)
@@ -316,7 +316,7 @@ static const u32 bf_sbox[256 * 4] = {
  * The blowfish encipher, processes 64-bit blocks.
  * NOTE: This function MUSTN'T respect endianess 
  */
-static inline void encrypt_block(struct bf_ctx *bctx, u32 *dst, u32 *src)
+static void encrypt_block(struct bf_ctx *bctx, u32 *dst, u32 *src)
 {
        const u32 *P = bctx->p;
        const u32 *S = bctx->s;