X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=crypto%2Fblowfish.c;h=83d575557c57ec0f4290eaa262e7ea7a480bb68b;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=b6bea821c05f3f25d03b073005b97ee43b112bff;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/crypto/blowfish.c b/crypto/blowfish.c index b6bea821c..83d575557 100644 --- a/crypto/blowfish.c +++ b/crypto/blowfish.c @@ -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;