diff options
author | David Howells <dhowells@redhat.com> | 2012-03-28 13:30:03 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-03-28 13:30:03 -0400 |
commit | 705f4502bb9592ad0e8fb1cd2ba5ae4ce955ff8b (patch) | |
tree | 9cfa64172e5ae8ffaa354d496a24eb5183f206fa /arch/openrisc | |
parent | 5d1250660a476c588361fb5cb9cbfa52768540c2 (diff) |
Disintegrate asm/system.h for OpenRISC
Disintegrate asm/system.h for OpenRISC. Not compiled.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
cc: linux@lists.openrisc.net
Diffstat (limited to 'arch/openrisc')
-rw-r--r-- | arch/openrisc/include/asm/Kbuild | 3 | ||||
-rw-r--r-- | arch/openrisc/include/asm/system.h | 40 | ||||
-rw-r--r-- | arch/openrisc/kernel/idle.c | 1 | ||||
-rw-r--r-- | arch/openrisc/kernel/process.c | 1 | ||||
-rw-r--r-- | arch/openrisc/kernel/prom.c | 1 | ||||
-rw-r--r-- | arch/openrisc/kernel/ptrace.c | 1 | ||||
-rw-r--r-- | arch/openrisc/kernel/setup.c | 1 | ||||
-rw-r--r-- | arch/openrisc/kernel/traps.c | 1 | ||||
-rw-r--r-- | arch/openrisc/mm/init.c | 1 | ||||
-rw-r--r-- | arch/openrisc/mm/tlb.c | 1 |
10 files changed, 8 insertions, 43 deletions
diff --git a/arch/openrisc/include/asm/Kbuild b/arch/openrisc/include/asm/Kbuild index 11162e6c878f..dcea5a0308ae 100644 --- a/arch/openrisc/include/asm/Kbuild +++ b/arch/openrisc/include/asm/Kbuild | |||
@@ -4,6 +4,7 @@ header-y += spr_defs.h | |||
4 | 4 | ||
5 | generic-y += atomic.h | 5 | generic-y += atomic.h |
6 | generic-y += auxvec.h | 6 | generic-y += auxvec.h |
7 | generic-y += barrier.h | ||
7 | generic-y += bitsperlong.h | 8 | generic-y += bitsperlong.h |
8 | generic-y += bug.h | 9 | generic-y += bug.h |
9 | generic-y += bugs.h | 10 | generic-y += bugs.h |
@@ -19,6 +20,7 @@ generic-y += div64.h | |||
19 | generic-y += dma.h | 20 | generic-y += dma.h |
20 | generic-y += emergency-restart.h | 21 | generic-y += emergency-restart.h |
21 | generic-y += errno.h | 22 | generic-y += errno.h |
23 | generic-y += exec.h | ||
22 | generic-y += fb.h | 24 | generic-y += fb.h |
23 | generic-y += fcntl.h | 25 | generic-y += fcntl.h |
24 | generic-y += ftrace.h | 26 | generic-y += ftrace.h |
@@ -55,6 +57,7 @@ generic-y += sockios.h | |||
55 | generic-y += statfs.h | 57 | generic-y += statfs.h |
56 | generic-y += stat.h | 58 | generic-y += stat.h |
57 | generic-y += string.h | 59 | generic-y += string.h |
60 | generic-y += switch_to.h | ||
58 | generic-y += swab.h | 61 | generic-y += swab.h |
59 | generic-y += termbits.h | 62 | generic-y += termbits.h |
60 | generic-y += termios.h | 63 | generic-y += termios.h |
diff --git a/arch/openrisc/include/asm/system.h b/arch/openrisc/include/asm/system.h index cf658882186b..a7f40578587c 100644 --- a/arch/openrisc/include/asm/system.h +++ b/arch/openrisc/include/asm/system.h | |||
@@ -1,35 +1,5 @@ | |||
1 | /* | 1 | /* FILE TO BE DELETED. DO NOT ADD STUFF HERE! */ |
2 | * OpenRISC Linux | 2 | #include <asm/barrier.h> |
3 | * | 3 | #include <asm/cmpxchg.h> |
4 | * Linux architectural port borrowing liberally from similar works of | 4 | #include <asm/exec.h> |
5 | * others. All original copyrights apply as per the original source | 5 | #include <asm/switch_to.h> |
6 | * declaration. | ||
7 | * | ||
8 | * OpenRISC implementation: | ||
9 | * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com> | ||
10 | * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se> | ||
11 | * et al. | ||
12 | * | ||
13 | * This program is free software; you can redistribute it and/or modify | ||
14 | * it under the terms of the GNU General Public License as published by | ||
15 | * the Free Software Foundation; either version 2 of the License, or | ||
16 | * (at your option) any later version. | ||
17 | */ | ||
18 | |||
19 | #ifndef __ASM_OPENRISC_SYSTEM_H | ||
20 | #define __ASM_OPENRISC_SYSTEM_H | ||
21 | |||
22 | #ifdef __KERNEL__ | ||
23 | #ifndef __ASSEMBLY__ | ||
24 | |||
25 | #include <asm/spr.h> | ||
26 | #include <asm-generic/system.h> | ||
27 | |||
28 | /* We probably need this definition, but the generic system.h provides it | ||
29 | * and it's not used on our arch anyway... | ||
30 | */ | ||
31 | /*#define nop() __asm__ __volatile__ ("l.nop"::)*/ | ||
32 | |||
33 | #endif /* __ASSEMBLY__ */ | ||
34 | #endif /* __KERNEL__ */ | ||
35 | #endif /* __ASM_OPENRISC_SYSTEM_H */ | ||
diff --git a/arch/openrisc/kernel/idle.c b/arch/openrisc/kernel/idle.c index e5fc78877830..7d618feb1b72 100644 --- a/arch/openrisc/kernel/idle.c +++ b/arch/openrisc/kernel/idle.c | |||
@@ -31,7 +31,6 @@ | |||
31 | 31 | ||
32 | #include <asm/pgtable.h> | 32 | #include <asm/pgtable.h> |
33 | #include <asm/uaccess.h> | 33 | #include <asm/uaccess.h> |
34 | #include <asm/system.h> | ||
35 | #include <asm/io.h> | 34 | #include <asm/io.h> |
36 | #include <asm/processor.h> | 35 | #include <asm/processor.h> |
37 | #include <asm/mmu.h> | 36 | #include <asm/mmu.h> |
diff --git a/arch/openrisc/kernel/process.c b/arch/openrisc/kernel/process.c index e4209af879ec..55210f37d1a3 100644 --- a/arch/openrisc/kernel/process.c +++ b/arch/openrisc/kernel/process.c | |||
@@ -38,7 +38,6 @@ | |||
38 | 38 | ||
39 | #include <asm/uaccess.h> | 39 | #include <asm/uaccess.h> |
40 | #include <asm/pgtable.h> | 40 | #include <asm/pgtable.h> |
41 | #include <asm/system.h> | ||
42 | #include <asm/io.h> | 41 | #include <asm/io.h> |
43 | #include <asm/processor.h> | 42 | #include <asm/processor.h> |
44 | #include <asm/spr_defs.h> | 43 | #include <asm/spr_defs.h> |
diff --git a/arch/openrisc/kernel/prom.c b/arch/openrisc/kernel/prom.c index 3d4478f6c942..5869e3fa5dd3 100644 --- a/arch/openrisc/kernel/prom.c +++ b/arch/openrisc/kernel/prom.c | |||
@@ -42,7 +42,6 @@ | |||
42 | #include <asm/processor.h> | 42 | #include <asm/processor.h> |
43 | #include <asm/irq.h> | 43 | #include <asm/irq.h> |
44 | #include <linux/io.h> | 44 | #include <linux/io.h> |
45 | #include <asm/system.h> | ||
46 | #include <asm/mmu.h> | 45 | #include <asm/mmu.h> |
47 | #include <asm/pgtable.h> | 46 | #include <asm/pgtable.h> |
48 | #include <asm/sections.h> | 47 | #include <asm/sections.h> |
diff --git a/arch/openrisc/kernel/ptrace.c b/arch/openrisc/kernel/ptrace.c index 7259047d5f9d..967d499da68f 100644 --- a/arch/openrisc/kernel/ptrace.c +++ b/arch/openrisc/kernel/ptrace.c | |||
@@ -33,7 +33,6 @@ | |||
33 | #include <asm/segment.h> | 33 | #include <asm/segment.h> |
34 | #include <asm/page.h> | 34 | #include <asm/page.h> |
35 | #include <asm/pgtable.h> | 35 | #include <asm/pgtable.h> |
36 | #include <asm/system.h> | ||
37 | 36 | ||
38 | /* | 37 | /* |
39 | * Copy the thread state to a regset that can be interpreted by userspace. | 38 | * Copy the thread state to a regset that can be interpreted by userspace. |
diff --git a/arch/openrisc/kernel/setup.c b/arch/openrisc/kernel/setup.c index 1422f747f52b..ad2c290f2395 100644 --- a/arch/openrisc/kernel/setup.c +++ b/arch/openrisc/kernel/setup.c | |||
@@ -41,7 +41,6 @@ | |||
41 | #include <linux/of_platform.h> | 41 | #include <linux/of_platform.h> |
42 | 42 | ||
43 | #include <asm/segment.h> | 43 | #include <asm/segment.h> |
44 | #include <asm/system.h> | ||
45 | #include <asm/pgtable.h> | 44 | #include <asm/pgtable.h> |
46 | #include <asm/types.h> | 45 | #include <asm/types.h> |
47 | #include <asm/setup.h> | 46 | #include <asm/setup.h> |
diff --git a/arch/openrisc/kernel/traps.c b/arch/openrisc/kernel/traps.c index a4ec44a052b2..52ca32b5b655 100644 --- a/arch/openrisc/kernel/traps.c +++ b/arch/openrisc/kernel/traps.c | |||
@@ -33,7 +33,6 @@ | |||
33 | #include <linux/kallsyms.h> | 33 | #include <linux/kallsyms.h> |
34 | #include <asm/uaccess.h> | 34 | #include <asm/uaccess.h> |
35 | 35 | ||
36 | #include <asm/system.h> | ||
37 | #include <asm/segment.h> | 36 | #include <asm/segment.h> |
38 | #include <asm/io.h> | 37 | #include <asm/io.h> |
39 | #include <asm/pgtable.h> | 38 | #include <asm/pgtable.h> |
diff --git a/arch/openrisc/mm/init.c b/arch/openrisc/mm/init.c index 359dcb20fe85..1cf3a8a31549 100644 --- a/arch/openrisc/mm/init.c +++ b/arch/openrisc/mm/init.c | |||
@@ -33,7 +33,6 @@ | |||
33 | #include <linux/pagemap.h> | 33 | #include <linux/pagemap.h> |
34 | #include <linux/memblock.h> | 34 | #include <linux/memblock.h> |
35 | 35 | ||
36 | #include <asm/system.h> | ||
37 | #include <asm/segment.h> | 36 | #include <asm/segment.h> |
38 | #include <asm/pgalloc.h> | 37 | #include <asm/pgalloc.h> |
39 | #include <asm/pgtable.h> | 38 | #include <asm/pgtable.h> |
diff --git a/arch/openrisc/mm/tlb.c b/arch/openrisc/mm/tlb.c index 56b0b89624af..683bd4d31c7c 100644 --- a/arch/openrisc/mm/tlb.c +++ b/arch/openrisc/mm/tlb.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/mm.h> | 26 | #include <linux/mm.h> |
27 | #include <linux/init.h> | 27 | #include <linux/init.h> |
28 | 28 | ||
29 | #include <asm/system.h> | ||
30 | #include <asm/segment.h> | 29 | #include <asm/segment.h> |
31 | #include <asm/tlbflush.h> | 30 | #include <asm/tlbflush.h> |
32 | #include <asm/pgtable.h> | 31 | #include <asm/pgtable.h> |