From 1ddb63991018f73d032477782b2fa6b6a2492f2d Mon Sep 17 00:00:00 2001
From: Hauke Mehrtens <hauke@hauke-m.de>
Date: Sat, 19 Mar 2011 17:40:02 +0000
Subject: 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
---
 target/linux/generic/files/crypto/ocf/cryptocteon/cryptocteon.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

(limited to 'target/linux/generic/files/crypto/ocf/cryptocteon')

diff --git a/target/linux/generic/files/crypto/ocf/cryptocteon/cryptocteon.c b/target/linux/generic/files/crypto/ocf/cryptocteon/cryptocteon.c
index 9940f59..fa377e5 100644
--- a/target/linux/generic/files/crypto/ocf/cryptocteon/cryptocteon.c
+++ b/target/linux/generic/files/crypto/ocf/cryptocteon/cryptocteon.c
@@ -27,8 +27,11 @@
  * ---------------------------------------------------------------------------
  */
 
-#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>
-- 
cgit v1.1