Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 702c96d5 authored by Deepak Saxena's avatar Deepak Saxena Committed by Linus Torvalds
Browse files

[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: default avatarDeepak Saxena <dsaxena@plexity.net>
[ diff went missing first time due to corrupted patch ]
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f0e837d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};