From 1ddb63991018f73d032477782b2fa6b6a2492f2d Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens 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/hifn/hifn7751.c | 7 +++++-- target/linux/generic/files/crypto/ocf/hifn/hifnHIPP.c | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'target/linux/generic/files/crypto/ocf/hifn') diff --git a/target/linux/generic/files/crypto/ocf/hifn/hifn7751.c b/target/linux/generic/files/crypto/ocf/hifn/hifn7751.c index e7fd5bb5a3..ad704c7fab 100644 --- a/target/linux/generic/files/crypto/ocf/hifn/hifn7751.c +++ b/target/linux/generic/files/crypto/ocf/hifn/hifn7751.c @@ -46,8 +46,11 @@ __FBSDID("$FreeBSD: src/sys/dev/hifn/hifn7751.c,v 1.40 2007/03/21 03:42:49 sam E /* * Driver for various Hifn encryption processors. */ -#ifndef AUTOCONF_INCLUDED -#include +#include +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) +#include +#else +#include #endif #include #include diff --git a/target/linux/generic/files/crypto/ocf/hifn/hifnHIPP.c b/target/linux/generic/files/crypto/ocf/hifn/hifnHIPP.c index 802708d72c..cdc23e926f 100644 --- a/target/linux/generic/files/crypto/ocf/hifn/hifnHIPP.c +++ b/target/linux/generic/files/crypto/ocf/hifn/hifnHIPP.c @@ -32,8 +32,11 @@ /* * Driver for various Hifn encryption processors. */ -#ifndef AUTOCONF_INCLUDED -#include +#include +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) +#include +#else +#include #endif #include #include -- cgit v1.2.3