diff options
author | Adrian Hunter <[email protected]> | 2008-05-30 15:56:23 +0300 |
---|---|---|
committer | David Woodhouse <[email protected]> | 2008-06-04 17:47:43 +0100 |
commit | 07293b20083cb66df35bf2041f0c554eaac43e8c (patch) | |
tree | dc481086138e1d9106b3547ae9b4f13edff60b59 | |
parent | af3deccfa67341a9df39b6f734afcc85998ad4b7 (diff) |
[MTD] [NAND] nandsim: fix overridesize
Signed-off-by: Adrian Hunter <[email protected]>
Signed-off-by: David Woodhouse <[email protected]>
-rw-r--r-- | drivers/mtd/nand/nandsim.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c index b28d76013ab6..b48051684733 100644 --- a/drivers/mtd/nand/nandsim.c +++ b/drivers/mtd/nand/nandsim.c @@ -2022,6 +2022,7 @@ static int __init ns_init_module(void) nsmtd->size = new_size; chip->chipsize = new_size; chip->chip_shift = ffs(new_size) - 1; + chip->pagemask = (chip->chipsize >> chip->page_shift) - 1; } if ((retval = setup_wear_reporting(nsmtd)) != 0) |