Commit d567c1d3 authored by Andrew Morton's avatar Andrew Morton Committed by David S. Miller

[CRYPTO]: Deinline large function in blowfish.c

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ee3743b5
...@@ -316,7 +316,7 @@ static const u32 bf_sbox[256 * 4] = { ...@@ -316,7 +316,7 @@ static const u32 bf_sbox[256 * 4] = {
* The blowfish encipher, processes 64-bit blocks. * The blowfish encipher, processes 64-bit blocks.
* NOTE: This function MUSTN'T respect endianess * 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 *P = bctx->p;
const u32 *S = bctx->s; const u32 *S = bctx->s;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment