From: Adrian Bunk Date: Wed, 5 Mar 2008 11:05:54 +0000 (+0800) Subject: [CRYPTO] digest: Include internal.h for prototypes X-Git-Tag: v3.12-rc1~22468^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc97f19dc8be1f181f33b4368542c72498f3562a;p=kernel%2Fkernel-generic.git [CRYPTO] digest: Include internal.h for prototypes Every file should include the headers containing the externs for its global code (in this case for struct crypto_{init,exit}_digest_ops()). Signed-off-by: Adrian Bunk Signed-off-by: Herbert Xu --- diff --git a/crypto/digest.c b/crypto/digest.c index 6fd43bd..b526cc3 100644 --- a/crypto/digest.c +++ b/crypto/digest.c @@ -21,6 +21,8 @@ #include #include +#include "internal.h" + static int init(struct hash_desc *desc) { struct crypto_tfm *tfm = crypto_hash_tfm(desc->tfm);