From: Adrian Hunter <ext-adrian.hunter@nokia.com>
Date: Fri, 30 May 2008 12:56:18 +0000 (+0300)
Subject: [MTD] [NAND] nandsim: fix size bug
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=af3deccfa67341a9df39b6f734afcc85998ad4b7;p=linux.git

[MTD] [NAND] nandsim: fix size bug

Signed-off-by: Adrian Hunter <ext-adrian.hunter@nokia.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
---

diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c
index bb885d1fcab5e..b28d76013ab69 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 < (32 << 20)) {
+		if (ns->geom.totsz <= (32 << 20)) {
 			ns->geom.pgaddrbytes  = 3;
 			ns->geom.secaddrbytes = 2;
 		} else {