From: Denis Vlasenko This function has 3 callsites. Patch reduces code by 1.5k (on i386). Signed-off-by: Andrew Morton --- 25-akpm/crypto/blowfish.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN crypto/blowfish.c~deinline-large-function-in-blowfishc crypto/blowfish.c --- 25/crypto/blowfish.c~deinline-large-function-in-blowfishc 2004-10-01 21:18:34.166349184 -0700 +++ 25-akpm/crypto/blowfish.c 2004-10-01 21:18:34.169348728 -0700 @@ -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; _