diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-06-29 11:10:24 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-06-29 11:10:24 +0000 |
commit | 40951f072b1690219fefb9e9d6c5f87a30210630 (patch) | |
tree | d3b7cdc8e98c309f5382604642f45ee0f7e0d205 /target | |
parent | 3ef2cbe05ef2cd225fa01b9747ac7082257b0f98 (diff) | |
download | upstream-40951f072b1690219fefb9e9d6c5f87a30210630.tar.gz upstream-40951f072b1690219fefb9e9d6c5f87a30210630.tar.bz2 upstream-40951f072b1690219fefb9e9d6c5f87a30210630.zip |
Fix rb523 nand detection (#1723)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7777 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/rb532-2.6/files/drivers/mtd/nand/rbmipsnand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/rb532-2.6/files/drivers/mtd/nand/rbmipsnand.c b/target/linux/rb532-2.6/files/drivers/mtd/nand/rbmipsnand.c index 1ab37b8208..027241b206 100644 --- a/target/linux/rb532-2.6/files/drivers/mtd/nand/rbmipsnand.c +++ b/target/linux/rb532-2.6/files/drivers/mtd/nand/rbmipsnand.c @@ -99,8 +99,8 @@ int __init rbmips_init(void) memset(&rnand, 0, sizeof(rnand)); printk("RB500 nand\n"); - changeLatchU5(LO_WPX | LO_FOFF | LO_CEX, - LO_ULED | LO_ALE | LO_CLE); + changeLatchU5(LO_FOFF | LO_CEX, + LO_ULED | LO_ALE | LO_CLE | LO_WPX); rnand.cmd_ctrl = rbmips_hwcontrol500; rnand.dev_ready = rb500_dev_ready; |