summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/files/crypto/ocf/crypto.c
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2011-03-19 17:40:02 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2011-03-19 17:40:02 +0000
commit1ddb63991018f73d032477782b2fa6b6a2492f2d (patch)
treed949a423e0f99a200c226873ffd91abf741e9726 /target/linux/generic/files/crypto/ocf/crypto.c
parentaa8c871b41ef6b6f1ade55b0fc078e6ff072534b (diff)
downloadmaster-31e0f0ae-1ddb63991018f73d032477782b2fa6b6a2492f2d.tar.gz
master-31e0f0ae-1ddb63991018f73d032477782b2fa6b6a2492f2d.tar.bz2
master-31e0f0ae-1ddb63991018f73d032477782b2fa6b6a2492f2d.zip
kernel: linux/version.h was removed in kernel 2.6.19 and is now replaced by generated/autoconf.h.
This fixes build with kernel 2.6.38. This was only build tested. Thank you philipp64 for reporting SVN-Revision: 26237
Diffstat (limited to 'target/linux/generic/files/crypto/ocf/crypto.c')
-rw-r--r--target/linux/generic/files/crypto/ocf/crypto.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/target/linux/generic/files/crypto/ocf/crypto.c b/target/linux/generic/files/crypto/ocf/crypto.c
index 9735f0ce93..ccd5a4bfab 100644
--- a/target/linux/generic/files/crypto/ocf/crypto.c
+++ b/target/linux/generic/files/crypto/ocf/crypto.c
@@ -63,8 +63,11 @@ __FBSDID("$FreeBSD: src/sys/opencrypto/crypto.c,v 1.16 2005/01/07 02:29:16 imp E
*/
-#ifndef AUTOCONF_INCLUDED
-#include <linux/config.h>
+#include <linux/version.h>
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
+#include <generated/autoconf.h>
+#else
+#include <linux/autoconf.h>
#endif
#include <linux/module.h>
#include <linux/init.h>