Skip to content
Snippets Groups Projects
Commit 10dc6a9b authored by Peter Tyser's avatar Peter Tyser Committed by Scott Wood
Browse files

NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST


Commit cfa460ad removed support
for disabling the "No NAND device found!!!" warning when
CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
for silencing the warning.

Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
parent ad09ab2e
No related branches found
No related tags found
No related merge requests found
......@@ -2618,7 +2618,9 @@ int nand_scan_ident(struct mtd_info *mtd, int maxchips)
type = nand_get_flash_type(mtd, chip, busw, &nand_maf_id);
if (IS_ERR(type)) {
#ifndef CONFIG_SYS_NAND_QUIET_TEST
printk(KERN_WARNING "No NAND device found!!!\n");
#endif
chip->select_chip(mtd, -1);
return PTR_ERR(type);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment