diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-12-15 17:58:57 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2010-12-15 19:44:08 +0800 |
commit | 52f6c5ad430e41736133acac179607b224eaaa11 (patch) | |
tree | f525c1e28ebff9d96b6cee57729b315b0938a652 /arch | |
parent | 0fcdcfbbc98f70f559e4b36773a69972489a6d8f (diff) | |
download | op-kernel-dev-52f6c5ad430e41736133acac179607b224eaaa11.zip op-kernel-dev-52f6c5ad430e41736133acac179607b224eaaa11.tar.gz |
crypto: ghash-intel - ghash-clmulni-intel_glue needs err.h
Add missing header file:
arch/x86/crypto/ghash-clmulni-intel_glue.c:256: error: implicit declaration of function 'IS_ERR'
arch/x86/crypto/ghash-clmulni-intel_glue.c:257: error: implicit declaration of function 'PTR_ERR'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/crypto/ghash-clmulni-intel_glue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/crypto/ghash-clmulni-intel_glue.c b/arch/x86/crypto/ghash-clmulni-intel_glue.c index cbcc8d8..7a6e68e 100644 --- a/arch/x86/crypto/ghash-clmulni-intel_glue.c +++ b/arch/x86/crypto/ghash-clmulni-intel_glue.c @@ -10,6 +10,7 @@ * by the Free Software Foundation. */ +#include <linux/err.h> #include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> |