Skip to content

Commit

Permalink
[PATCH] ARM: Fix IXP2000 serial port resource range. For real this time.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Deepak Saxena authored and Linus Torvalds committed Oct 1, 2005
1 parent f0e837d commit 702c96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-ixp2000/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand Down

0 comments on commit 702c96d

Please sign in to comment.