diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2011-03-19 17:40:02 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2011-03-19 17:40:02 +0000 |
commit | 1ddb63991018f73d032477782b2fa6b6a2492f2d (patch) | |
tree | d949a423e0f99a200c226873ffd91abf741e9726 /target/linux/generic/files/crypto/ocf/kirkwood | |
parent | aa8c871b41ef6b6f1ade55b0fc078e6ff072534b (diff) | |
download | mtk-20170518-1ddb63991018f73d032477782b2fa6b6a2492f2d.zip mtk-20170518-1ddb63991018f73d032477782b2fa6b6a2492f2d.tar.gz mtk-20170518-1ddb63991018f73d032477782b2fa6b6a2492f2d.tar.bz2 |
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/kirkwood')
-rw-r--r-- | target/linux/generic/files/crypto/ocf/kirkwood/cesa_ocf_drv.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/target/linux/generic/files/crypto/ocf/kirkwood/cesa_ocf_drv.c b/target/linux/generic/files/crypto/ocf/kirkwood/cesa_ocf_drv.c index ccf9227..fb51947 100644 --- a/target/linux/generic/files/crypto/ocf/kirkwood/cesa_ocf_drv.c +++ b/target/linux/generic/files/crypto/ocf/kirkwood/cesa_ocf_drv.c @@ -26,8 +26,11 @@ DISCLAIMED. The GPL License provides additional details about this warranty disclaimer. *******************************************************************************/ -#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> |