diff options
| author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-07 16:04:18 +0900 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-11-08 15:25:13 -0500 | 
| commit | 643aae1406c93ddc64fcf8c136b47cdffd9c8ccd (patch) | |
| tree | 8004f4f1215dab67dbeca2a5a3e4ad7fd3a74d8a /include/linux | |
| parent | 5d62314c1d0be34e0f6cdb7705550098fe7275bd (diff) | |
| download | olio-uboot-2014.01-643aae1406c93ddc64fcf8c136b47cdffd9c8ccd.tar.xz olio-uboot-2014.01-643aae1406c93ddc64fcf8c136b47cdffd9c8ccd.zip | |
include: delete include/linux/config.h
Linux Kernel abolished include/linux/config.h long time ago.
(around version v2.6.18..v2.6.19)
We don't need to provide Linux copatibility any more.
This commit deletes include/linux/config.h
and fixes source files not to include this.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/config.h | 6 | ||||
| -rw-r--r-- | include/linux/linkage.h | 1 | ||||
| -rw-r--r-- | include/linux/types.h | 4 | 
3 files changed, 0 insertions, 11 deletions
| diff --git a/include/linux/config.h b/include/linux/config.h deleted file mode 100644 index a0194cb7c..000000000 --- a/include/linux/config.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef _LINUX_CONFIG_H -#define _LINUX_CONFIG_H - -/* #include <linux/autoconf.h> */ - -#endif diff --git a/include/linux/linkage.h b/include/linux/linkage.h index 9ddf83028..39c712eac 100644 --- a/include/linux/linkage.h +++ b/include/linux/linkage.h @@ -10,7 +10,6 @@  #define _LINUX_LINKAGE_H  #include <asm/linkage.h> -#include <linux/config.h>  #ifdef __cplusplus  #define CPP_ASMLINKAGE		extern "C" diff --git a/include/linux/types.h b/include/linux/types.h index f07ba41b7..9aebc4e8c 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -1,10 +1,6 @@  #ifndef _LINUX_TYPES_H  #define _LINUX_TYPES_H -#ifdef	__KERNEL__ -#include <linux/config.h> -#endif -  #include <linux/posix_types.h>  #include <asm/types.h>  #include <stdbool.h> |