diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-07-27 22:31:28 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-07-27 22:31:28 +0000 |
commit | fd243ab4c9599c275a347db0a70221f134f1b11c (patch) | |
tree | e1b56efc560016c411c9b224a13fd5b03ac9dd2f | |
parent | bb23f1eafceb72a7d0f9b9b344acfa2fb0db9d14 (diff) | |
download | upstream-fd243ab4c9599c275a347db0a70221f134f1b11c.tar.gz upstream-fd243ab4c9599c275a347db0a70221f134f1b11c.tar.bz2 upstream-fd243ab4c9599c275a347db0a70221f134f1b11c.zip |
[brcm63xx] fix typo for the flash start address on bcm6345
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17032 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c index 52d4c27a08..c61438e366 100644 --- a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c @@ -827,7 +827,7 @@ int __init board_register_devices(void) /* read base address of boot chip select (0) */ if (BCMCPU_IS_6345()) - val = 0x1fc0000; + val = 0x1fc00000; else { val = bcm_mpi_readl(MPI_CSBASE_REG(0)); val &= MPI_CSBASE_BASE_MASK; |