diff options
author | Scott Wood <scottwood@freescale.com> | 2008-05-19 09:30:43 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2008-05-28 11:06:24 -0500 |
commit | 135f0a7488af2947adbe4b40b79280bdfe5e9886 (patch) | |
tree | 0239a9587c781aa94181344924273d96147eccc1 /include/linux | |
parent | 1f1554841a4c8e069d331176f0c3059fb2bb8280 (diff) |
NAND: Provide a sane default for NAND_MAX_CHIPS.
This allows the header to be included regardless of whether a board's
config file provides NAND-related defininitions.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mtd/nand.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 4cc4a7d1bb4..e2a25a60d84 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -385,6 +385,10 @@ struct nand_manufacturers { extern struct nand_flash_dev nand_flash_ids[]; extern struct nand_manufacturers nand_manuf_ids[]; +#ifndef NAND_MAX_CHIPS +#define NAND_MAX_CHIPS 8 +#endif + /** * struct nand_bbt_descr - bad block table descriptor * @options: options for this descriptor |