2
0
forked from Ivasoft/openwrt

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
This commit is contained in:
Hauke Mehrtens
2011-03-19 17:40:02 +00:00
parent aa8c871b41
commit 1ddb639910
16 changed files with 80 additions and 32 deletions

View File

@@ -17,8 +17,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#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>