aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-10-21 07:52:23 -0700
committerDavid S. Miller <davem@nuts.davemloft.net>2004-10-21 07:52:23 -0700
commitd567c1d3da9331d23bfc6fd1c9b9bcbdfbea9128 (patch)
treea9e7d064ecbb3449e4c4ee4df2182a551d7ef809 /crypto
parentee3743b5c5d59818ea9b1fa5b313f1b28156a538 (diff)
downloadhistory-d567c1d3da9331d23bfc6fd1c9b9bcbdfbea9128.tar.gz
[CRYPTO]: Deinline large function in blowfish.c
Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/blowfish.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/blowfish.c b/crypto/blowfish.c
index b6bea821c05f3f..83d575557c57ec 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;