aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ixp2000
diff options
context:
space:
mode:
authorDeepak Saxena <dsaxena@plexity.net>2005-09-30 16:20:22 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-30 23:04:20 -0700
commit702c96d55059b4a8e5b1eb112ee3b1804708a1bd (patch)
tree21783503ba16539d1e0d9d0b53edf97266382daf /arch/arm/mach-ixp2000
parent[PATCH] r8169: tone down the r8169 driver (diff)
downloadlinux-dev-702c96d55059b4a8e5b1eb112ee3b1804708a1bd.tar.xz
linux-dev-702c96d55059b4a8e5b1eb112ee3b1804708a1bd.zip
[PATCH] ARM: Fix IXP2000 serial port resource range. For real this time.
Serial port only needs 32 bytes of resource space but we are currently asking for 64K. Signed-off-by: Deepak Saxena <dsaxena@plexity.net> [ diff went missing first time due to corrupted patch ] Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/arm/mach-ixp2000')
-rw-r--r--arch/arm/mach-ixp2000/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ixp2000/core.c b/arch/arm/mach-ixp2000/core.c
index f34797a46a23..f4d7f1f6ef85 100644
--- a/arch/arm/mach-ixp2000/core.c
+++ b/arch/arm/mach-ixp2000/core.c
@@ -167,7 +167,7 @@ static struct plat_serial8250_port ixp2000_serial_port[] = {
static struct resource ixp2000_uart_resource = {
.start = IXP2000_UART_PHYS_BASE,
- .end = IXP2000_UART_PHYS_BASE + 0xffff,
+ .end = IXP2000_UART_PHYS_BASE + 0x1f,
.flags = IORESOURCE_MEM,
};