diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
commit | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch) | |
tree | a8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /arch/mips/dec | |
parent | 406089d01562f1e2bf9f089fd7637009ebaad589 (diff) |
Patched in Tegra support.
Diffstat (limited to 'arch/mips/dec')
-rw-r--r-- | arch/mips/dec/ecc-berr.c | 1 | ||||
-rw-r--r-- | arch/mips/dec/kn01-berr.c | 1 | ||||
-rw-r--r-- | arch/mips/dec/kn02xa-berr.c | 1 | ||||
-rw-r--r-- | arch/mips/dec/prom/memory.c | 2 | ||||
-rw-r--r-- | arch/mips/dec/setup.c | 1 | ||||
-rw-r--r-- | arch/mips/dec/wbflush.c | 2 |
6 files changed, 6 insertions, 2 deletions
diff --git a/arch/mips/dec/ecc-berr.c b/arch/mips/dec/ecc-berr.c index 5abf4e89421..7abce661b90 100644 --- a/arch/mips/dec/ecc-berr.c +++ b/arch/mips/dec/ecc-berr.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <asm/irq_regs.h> | 24 | #include <asm/irq_regs.h> |
25 | #include <asm/processor.h> | 25 | #include <asm/processor.h> |
26 | #include <asm/ptrace.h> | 26 | #include <asm/ptrace.h> |
27 | #include <asm/system.h> | ||
27 | #include <asm/traps.h> | 28 | #include <asm/traps.h> |
28 | 29 | ||
29 | #include <asm/dec/ecc.h> | 30 | #include <asm/dec/ecc.h> |
diff --git a/arch/mips/dec/kn01-berr.c b/arch/mips/dec/kn01-berr.c index 44d8a87a8a6..94d23b4a7dc 100644 --- a/arch/mips/dec/kn01-berr.c +++ b/arch/mips/dec/kn01-berr.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <asm/mipsregs.h> | 22 | #include <asm/mipsregs.h> |
23 | #include <asm/page.h> | 23 | #include <asm/page.h> |
24 | #include <asm/ptrace.h> | 24 | #include <asm/ptrace.h> |
25 | #include <asm/system.h> | ||
25 | #include <asm/traps.h> | 26 | #include <asm/traps.h> |
26 | #include <asm/uaccess.h> | 27 | #include <asm/uaccess.h> |
27 | 28 | ||
diff --git a/arch/mips/dec/kn02xa-berr.c b/arch/mips/dec/kn02xa-berr.c index ebb73c51d82..07ca5405d48 100644 --- a/arch/mips/dec/kn02xa-berr.c +++ b/arch/mips/dec/kn02xa-berr.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <asm/addrspace.h> | 21 | #include <asm/addrspace.h> |
22 | #include <asm/irq_regs.h> | 22 | #include <asm/irq_regs.h> |
23 | #include <asm/ptrace.h> | 23 | #include <asm/ptrace.h> |
24 | #include <asm/system.h> | ||
24 | #include <asm/traps.h> | 25 | #include <asm/traps.h> |
25 | 26 | ||
26 | #include <asm/dec/kn02ca.h> | 27 | #include <asm/dec/kn02ca.h> |
diff --git a/arch/mips/dec/prom/memory.c b/arch/mips/dec/prom/memory.c index 8c62316f22f..e95ff3054ff 100644 --- a/arch/mips/dec/prom/memory.c +++ b/arch/mips/dec/prom/memory.c | |||
@@ -101,7 +101,7 @@ void __init prom_free_prom_memory(void) | |||
101 | * the first page reserved for the exception handlers. | 101 | * the first page reserved for the exception handlers. |
102 | */ | 102 | */ |
103 | 103 | ||
104 | #if IS_ENABLED(CONFIG_DECLANCE) | 104 | #if defined(CONFIG_DECLANCE) || defined(CONFIG_DECLANCE_MODULE) |
105 | /* | 105 | /* |
106 | * Leave 128 KB reserved for Lance memory for | 106 | * Leave 128 KB reserved for Lance memory for |
107 | * IOASIC DECstations. | 107 | * IOASIC DECstations. |
diff --git a/arch/mips/dec/setup.c b/arch/mips/dec/setup.c index b874accd878..f7b7ba6d5c4 100644 --- a/arch/mips/dec/setup.c +++ b/arch/mips/dec/setup.c | |||
@@ -110,6 +110,7 @@ static struct irqaction fpuirq = { | |||
110 | }; | 110 | }; |
111 | 111 | ||
112 | static struct irqaction busirq = { | 112 | static struct irqaction busirq = { |
113 | .flags = IRQF_DISABLED, | ||
113 | .name = "bus error", | 114 | .name = "bus error", |
114 | .flags = IRQF_NO_THREAD, | 115 | .flags = IRQF_NO_THREAD, |
115 | }; | 116 | }; |
diff --git a/arch/mips/dec/wbflush.c b/arch/mips/dec/wbflush.c index 43feddd5e19..925c0525344 100644 --- a/arch/mips/dec/wbflush.c +++ b/arch/mips/dec/wbflush.c | |||
@@ -17,8 +17,8 @@ | |||
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | 18 | ||
19 | #include <asm/bootinfo.h> | 19 | #include <asm/bootinfo.h> |
20 | #include <asm/system.h> | ||
20 | #include <asm/wbflush.h> | 21 | #include <asm/wbflush.h> |
21 | #include <asm/barrier.h> | ||
22 | 22 | ||
23 | static void wbflush_kn01(void); | 23 | static void wbflush_kn01(void); |
24 | static void wbflush_kn210(void); | 24 | static void wbflush_kn210(void); |