From: H Hartley Sweeten Date: Thu, 22 Sep 2011 11:33:01 +0000 (+1000) Subject: crypto: aes-x86 - quiet sparse noise about symbol not declared X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=4a4cc2b6bf475c183443278808b758c702c01404;p=linux-edison.git crypto: aes-x86 - quiet sparse noise about symbol not declared Include to pick up the declarations for crypto_aes_encrypt_x86 and crypto_aes_decrypt_x86 to quiet the sparse noise: warning: symbol 'crypto_aes_encrypt_x86' was not declared. Should it be static? warning: symbol 'crypto_aes_decrypt_x86' was not declared. Should it be static? Signed-off-by: H Hartley Sweeten Acked-by: Mandeep Singh Baines Signed-off-by: Herbert Xu --- diff --git a/arch/x86/crypto/aes_glue.c b/arch/x86/crypto/aes_glue.c index 49ae9fe32b2..b0b6950cc8c 100644 --- a/arch/x86/crypto/aes_glue.c +++ b/arch/x86/crypto/aes_glue.c @@ -4,6 +4,7 @@ */ #include +#include asmlinkage void aes_enc_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in); asmlinkage void aes_dec_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);