2011-09-09 20:47:02

by Hartley Sweeten

[permalink] [raw]
Subject: [PATCH] aes_glue.c: quiet sparse noise about symbol not declared

Include <asm/aes.h> 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 <[email protected]>
Cc: Herbert Xu <[email protected]>
"David S. Miller" <[email protected]>
Thomas Gleixner <[email protected]>
Ingo Molnar <[email protected]>
"H. Peter Anvin" <[email protected]>

---

diff --git a/arch/x86/crypto/aes_glue.c b/arch/x86/crypto/aes_glue.c
index bdce3ee..8efcf42 100644
--- a/arch/x86/crypto/aes_glue.c
+++ b/arch/x86/crypto/aes_glue.c
@@ -5,6 +5,7 @@

#include <linux/module.h>
#include <crypto/aes.h>
+#include <asm/aes.h>

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);