projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0e837d
)
[PATCH] ARM: Fix IXP2000 serial port resource range. For real this time.
author
Deepak Saxena
<dsaxena@plexity.net>
Fri, 30 Sep 2005 23:20:22 +0000
(16:20 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 1 Oct 2005 06:04:20 +0000
(23:04 -0700)
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>
arch/arm/mach-ixp2000/core.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-ixp2000/core.c
b/arch/arm/mach-ixp2000/core.c
index f34797a46a236613d700039a7cee55a28dc5036c..f4d7f1f6ef851253d3466b39d403815dd07209fb 100644
(file)
--- 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 + 0x
fff
f,
+ .end = IXP2000_UART_PHYS_BASE + 0x
1
f,
.flags = IORESOURCE_MEM,
};