diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2008-07-18 10:03:15 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-20 09:38:20 -0400 |
commit | b5d5accc7a2eb41f43ef346f3b258ba2f6342a1c (patch) | |
tree | 82c20f65b6d8f220db48d31434e7fc66223518dd /arch/mips | |
parent | 5f15d378763e88c361364c0d0ad256d523f2d72f (diff) |
[MIPS] Cobalt: Fix I/O port resource range
LCD and buttons don't use I/O port space.
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/cobalt/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/cobalt/setup.c b/arch/mips/cobalt/setup.c index dd23beb8604f..b51644227241 100644 --- a/arch/mips/cobalt/setup.c +++ b/arch/mips/cobalt/setup.c | |||
@@ -81,8 +81,8 @@ void __init plat_mem_setup(void) | |||
81 | 81 | ||
82 | set_io_port_base(CKSEG1ADDR(GT_DEF_PCI0_IO_BASE)); | 82 | set_io_port_base(CKSEG1ADDR(GT_DEF_PCI0_IO_BASE)); |
83 | 83 | ||
84 | /* I/O port resource must include LCD/buttons */ | 84 | /* I/O port resource */ |
85 | ioport_resource.end = 0x0fffffff; | 85 | ioport_resource.end = 0x01ffffff; |
86 | 86 | ||
87 | /* These resources have been reserved by VIA SuperI/O chip. */ | 87 | /* These resources have been reserved by VIA SuperI/O chip. */ |
88 | for (i = 0; i < ARRAY_SIZE(cobalt_reserved_resources); i++) | 88 | for (i = 0; i < ARRAY_SIZE(cobalt_reserved_resources); i++) |