From: Florian Fainelli Date: Mon, 27 Jul 2009 22:31:28 +0000 (+0000) Subject: fix typo for the flash start address on bcm6345 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=dabf5e71a6c9a9c1c8f4186b28eb3d4f3212a3fc;p=openwrt%2Fstaging%2Fwigyori.git fix typo for the flash start address on bcm6345 SVN-Revision: 17032 --- 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;