diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-19 13:43:00 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-19 13:43:00 +0000 |
commit | a9f97c3def095e7a3bbd010593ce95ee33fd17fd (patch) | |
tree | eb5cec14db92044758b745bb1464aa812d6ec4d8 /target | |
parent | dd2b72105b01e81edc3ab462771d3112867c1ec4 (diff) | |
download | upstream-a9f97c3def095e7a3bbd010593ce95ee33fd17fd.tar.gz upstream-a9f97c3def095e7a3bbd010593ce95ee33fd17fd.tar.bz2 upstream-a9f97c3def095e7a3bbd010593ce95ee33fd17fd.zip |
correctly set mapbase while registering the UART (#4622)
SVN-Revision: 15255
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm47xx/patches-2.6.28/400-arch-bcm47xx.patch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/brcm47xx/patches-2.6.28/400-arch-bcm47xx.patch b/target/linux/brcm47xx/patches-2.6.28/400-arch-bcm47xx.patch index 127dab5923..ad7e66702a 100644 --- a/target/linux/brcm47xx/patches-2.6.28/400-arch-bcm47xx.patch +++ b/target/linux/brcm47xx/patches-2.6.28/400-arch-bcm47xx.patch @@ -129,7 +129,7 @@ Index: linux-2.6.28.7/arch/mips/bcm47xx/setup.c { int i = 0; -@@ -73,52 +83,141 @@ static void str2eaddr(char *str, char *d +@@ -73,52 +83,142 @@ static void str2eaddr(char *str, char *d } } @@ -272,6 +272,7 @@ Index: linux-2.6.28.7/arch/mips/bcm47xx/setup.c + + memset(&s, 0, sizeof(s)); + s.line = i; ++ s.mapbase = (unsigned int) port->regs; + s.membase = port->regs; + s.irq = port->irq + 2; + s.uartclk = port->baud_base; |