diff options
author | Wolfgang Grandegger <wg@grandegger.com> | 2009-02-11 18:38:20 +0100 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2009-03-23 15:53:37 -0500 |
commit | 672ed2aee91b4856f6671fc72cd34168d8f1b624 (patch) | |
tree | b2eec2d99fbabf1844a8c2a01e93913000f8828c /drivers/mtd/nand/nand_base.c | |
parent | 4ace2823bc1fcc96874069a9a8c0821ff4f95f5d (diff) | |
download | blackbird-obmc-uboot-672ed2aee91b4856f6671fc72cd34168d8f1b624.tar.gz blackbird-obmc-uboot-672ed2aee91b4856f6671fc72cd34168d8f1b624.zip |
Enable multi chip support in the NAND layer
This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
Multi-chips devices are displayed as shown:
Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'drivers/mtd/nand/nand_base.c')
-rw-r--r-- | drivers/mtd/nand/nand_base.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index d33fee242f..e6ac859e1a 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -2652,8 +2652,10 @@ int nand_scan_ident(struct mtd_info *mtd, int maxchips) type->id != chip->read_byte(mtd)) break; } +#ifdef DEBUG if (i > 1) printk(KERN_INFO "%d NAND chips detected\n", i); +#endif /* Store the number of chips and calc total size for mtd */ chip->numchips = i; |