diff options
| author | Maciej W. Rozycki <macro@linux-mips.org> | 2005-06-16 16:23:20 -0400 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:23 -0400 |
| commit | 902d21d5313ba08cccadc9fceee2df3cf34e84eb (patch) | |
| tree | eaea806d19e9749794e2e4124b7e08900c982852 | |
| parent | 02416dcf5a94af34bcd28b4baf25bbbf399d8136 (diff) | |
There is NO port I/O space on the DECstation. Minor clean-ups.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
| -rw-r--r-- | arch/mips/dec/setup.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/arch/mips/dec/setup.c b/arch/mips/dec/setup.c index 534a7792a7f6..82408ce710fc 100644 --- a/arch/mips/dec/setup.c +++ b/arch/mips/dec/setup.c | |||
| @@ -1,19 +1,20 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Setup the interrupt stuff. | 2 | * System-specific setup, especially interrupts. |
| 3 | * | 3 | * |
| 4 | * This file is subject to the terms and conditions of the GNU General Public | 4 | * This file is subject to the terms and conditions of the GNU General Public |
| 5 | * License. See the file "COPYING" in the main directory of this archive | 5 | * License. See the file "COPYING" in the main directory of this archive |
| 6 | * for more details. | 6 | * for more details. |
| 7 | * | 7 | * |
| 8 | * Copyright (C) 1998 Harald Koerfgen | 8 | * Copyright (C) 1998 Harald Koerfgen |
| 9 | * Copyright (C) 2000, 2001, 2002, 2003 Maciej W. Rozycki | 9 | * Copyright (C) 2000, 2001, 2002, 2003, 2005 Maciej W. Rozycki |
| 10 | */ | 10 | */ |
| 11 | #include <linux/sched.h> | ||
| 12 | #include <linux/interrupt.h> | ||
| 13 | #include <linux/param.h> | ||
| 14 | #include <linux/console.h> | 11 | #include <linux/console.h> |
| 15 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/interrupt.h> | ||
| 14 | #include <linux/ioport.h> | ||
| 16 | #include <linux/module.h> | 15 | #include <linux/module.h> |
| 16 | #include <linux/param.h> | ||
| 17 | #include <linux/sched.h> | ||
| 17 | #include <linux/spinlock.h> | 18 | #include <linux/spinlock.h> |
| 18 | #include <linux/types.h> | 19 | #include <linux/types.h> |
| 19 | 20 | ||
| @@ -139,6 +140,9 @@ void __init plat_setup(void) | |||
| 139 | _machine_restart = dec_machine_restart; | 140 | _machine_restart = dec_machine_restart; |
| 140 | _machine_halt = dec_machine_halt; | 141 | _machine_halt = dec_machine_halt; |
| 141 | _machine_power_off = dec_machine_power_off; | 142 | _machine_power_off = dec_machine_power_off; |
| 143 | |||
| 144 | ioport_resource.start = ~0UL; | ||
| 145 | ioport_resource.end = 0UL; | ||
| 142 | } | 146 | } |
| 143 | 147 | ||
| 144 | /* | 148 | /* |
