From cee2c11a38fe2c2cc6a7ea1b13c1eea90ac62432 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 8 Jul 2010 13:50:04 -0700 Subject: nanddump: increase max OOB size Supported OOB and page sizes can now be changed more easily by a macro constant. NAND_MAX_OOBSIZE needed increased to support 218 and 224 byte OOB. Signed-off-by: Brian Norris Signed-off-by: Artem Bityutskiy --- nanddump.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'nanddump.c') diff --git a/nanddump.c b/nanddump.c index e44ab36..735ae48 100644 --- a/nanddump.c +++ b/nanddump.c @@ -174,8 +174,10 @@ static void process_options (int argc, char * const argv[]) /* * Buffers for reading data from flash */ -static unsigned char readbuf[4096]; -static unsigned char oobbuf[128]; +#define NAND_MAX_PAGESIZE 4096 +#define NAND_MAX_OOBSIZE 256 +static unsigned char readbuf[NAND_MAX_PAGESIZE]; +static unsigned char oobbuf[NAND_MAX_OOBSIZE]; /* * Main program -- cgit v1.2.3