[MTD] [NAND] nandsim: bugfix in initialization

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Sat Oct 20 10:59:01 EDT 2007


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=39e73fc10e916db93c8a2c622f0315d296e66cf4
Commit:     39e73fc10e916db93c8a2c622f0315d296e66cf4
Parent:     42265940ed911c355140aa41ca4c2d94d7c5f5d8
Author:     Artem Bityutskiy <Artem.Bityutskiy at nokia.com>
AuthorDate: Wed Sep 19 17:56:47 2007 +0300
Committer:  David Woodhouse <dwmw2 at infradead.org>
CommitDate: Sat Oct 20 15:00:29 2007 +0100

    [MTD] [NAND] nandsim: bugfix in initialization
    
    NAND of > 32MiB in size use 4 bytes in address cycle, not 3.
    
    Reported-by: bhsong <bhsong at augustatek.com>
    Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy at nokia.com>
    Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
 drivers/mtd/nand/nandsim.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c
index a757480..10490b4 100644
--- a/drivers/mtd/nand/nandsim.c
+++ b/drivers/mtd/nand/nandsim.c
@@ -511,7 +511,7 @@ static int init_nandsim(struct mtd_info *mtd)
 	}
 
 	if (ns->options & OPT_SMALLPAGE) {
-		if (ns->geom.totsz < (64 << 20)) {
+		if (ns->geom.totsz < (32 << 20)) {
 			ns->geom.pgaddrbytes  = 3;
 			ns->geom.secaddrbytes = 2;
 		} else {



More information about the linux-mtd-cvs mailing list