diff options
author | Artem Bityutskiy <dedekind@infradead.org> | 2006-12-06 14:52:32 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-12-08 08:22:54 -0500 |
commit | 4a0c50c07a6100ca58d465bac951533347e18d71 (patch) | |
tree | 07bcd8bcbfd2c1527e089698983a66ecc8ef6251 /drivers | |
parent | 418b2e56b8a61ea85f7a9c5d327e1a2c61d1b2db (diff) |
[MTD] nandsim: bugfix in page addressing
Number of address bytes for 64-128 MiB NANDs is 4, not 5.
Signed-off-by: Artem Bityutskiy <dedekind@infradead.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/nand/nandsim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c index 3d39451ae8f5..c3bca9590ad2 100644 --- a/drivers/mtd/nand/nandsim.c +++ b/drivers/mtd/nand/nandsim.c | |||
@@ -160,7 +160,7 @@ MODULE_PARM_DESC(dbg, "Output debug information if not zero"); | |||
160 | /* After a command is input, the simulator goes to one of the following states */ | 160 | /* After a command is input, the simulator goes to one of the following states */ |
161 | #define STATE_CMD_READ0 0x00000001 /* read data from the beginning of page */ | 161 | #define STATE_CMD_READ0 0x00000001 /* read data from the beginning of page */ |
162 | #define STATE_CMD_READ1 0x00000002 /* read data from the second half of page */ | 162 | #define STATE_CMD_READ1 0x00000002 /* read data from the second half of page */ |
163 | #define STATE_CMD_READSTART 0x00000003 /* read data second command (large page devices) */ | 163 | #define STATE_CMD_READSTART 0x00000003 /* read data second command (large page devices) */ |
164 | #define STATE_CMD_PAGEPROG 0x00000004 /* start page programm */ | 164 | #define STATE_CMD_PAGEPROG 0x00000004 /* start page programm */ |
165 | #define STATE_CMD_READOOB 0x00000005 /* read OOB area */ | 165 | #define STATE_CMD_READOOB 0x00000005 /* read OOB area */ |
166 | #define STATE_CMD_ERASE1 0x00000006 /* sector erase first command */ | 166 | #define STATE_CMD_ERASE1 0x00000006 /* sector erase first command */ |
@@ -440,7 +440,7 @@ static int init_nandsim(struct mtd_info *mtd) | |||
440 | } | 440 | } |
441 | } else { | 441 | } else { |
442 | if (ns->geom.totsz <= (128 << 20)) { | 442 | if (ns->geom.totsz <= (128 << 20)) { |
443 | ns->geom.pgaddrbytes = 5; | 443 | ns->geom.pgaddrbytes = 4; |
444 | ns->geom.secaddrbytes = 2; | 444 | ns->geom.secaddrbytes = 2; |
445 | } else { | 445 | } else { |
446 | ns->geom.pgaddrbytes = 5; | 446 | ns->geom.pgaddrbytes = 5; |