diff options
Diffstat (limited to 'arch/openrisc/include/asm')
-rw-r--r-- | arch/openrisc/include/asm/Kbuild | 3 | ||||
-rw-r--r-- | arch/openrisc/include/asm/system.h | 35 |
2 files changed, 3 insertions, 35 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 deleted file mode 100644 index cf658882186b..000000000000 --- a/arch/openrisc/include/asm/system.h +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | /* | ||
2 | * OpenRISC Linux | ||
3 | * | ||
4 | * Linux architectural port borrowing liberally from similar works of | ||
5 | * others. All original copyrights apply as per the original source | ||
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 */ | ||