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 /arch/mips/include | |
| 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 'arch/mips/include')
| -rw-r--r-- | arch/mips/include/asm/bitops.h | 1 | ||||
| -rw-r--r-- | arch/mips/include/asm/io.h | 1 | ||||
| -rw-r--r-- | arch/mips/include/asm/processor.h | 2 | ||||
| -rw-r--r-- | arch/mips/include/asm/system.h | 1 | 
4 files changed, 0 insertions, 5 deletions
| diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index f2dc53356..b5c2a6367 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -16,7 +16,6 @@  #include <asm/sgidefs.h>  #include <asm/system.h> -#include <linux/config.h>  /*   * clear_bit() doesn't provide any barrier for the compiler. diff --git a/arch/mips/include/asm/io.h b/arch/mips/include/asm/io.h index 50a882ca5..3fa37f5dd 100644 --- a/arch/mips/include/asm/io.h +++ b/arch/mips/include/asm/io.h @@ -11,7 +11,6 @@  #ifndef _ASM_IO_H  #define _ASM_IO_H -#include <linux/config.h>  #if 0  #include <linux/pagemap.h>  #endif diff --git a/arch/mips/include/asm/processor.h b/arch/mips/include/asm/processor.h index 24858ddda..ba7f5381a 100644 --- a/arch/mips/include/asm/processor.h +++ b/arch/mips/include/asm/processor.h @@ -11,8 +11,6 @@  #ifndef _ASM_PROCESSOR_H  #define _ASM_PROCESSOR_H -#include <linux/config.h> -  #include <asm/isadep.h>  #include <asm/cachectl.h> diff --git a/arch/mips/include/asm/system.h b/arch/mips/include/asm/system.h index b6d50e2f0..7a2895284 100644 --- a/arch/mips/include/asm/system.h +++ b/arch/mips/include/asm/system.h @@ -16,7 +16,6 @@  #ifndef _ASM_SYSTEM_H  #define _ASM_SYSTEM_H -#include <linux/config.h>  #include <asm/sgidefs.h>  #include <asm/ptrace.h>  #if 0 |