CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
authorStefan Roese <sr@denx.de>
Sat, 7 Oct 2006 09:36:51 +0000 (11:36 +0200)
committerStefan Roese <sr@denx.de>
Sat, 7 Oct 2006 09:36:51 +0000 (11:36 +0200)
Patch by Stefan Roese, 07 Oct 2006

CHANGELOG
drivers/nand/nand_base.c

index a21526b..d2d5324 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes since U-Boot 1.1.4:
 ======================================================================
 
+* CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
+  Patch by Stefan Roese, 07 Oct 2006
+
 * Update ALPR code (NAND support working now)
   Patch by Stefan Roese, 07 Oct 2006
 
index b7a5d32..b003085 100644 (file)
@@ -2407,7 +2407,9 @@ int nand_scan (struct mtd_info *mtd, int maxchips)
        }
 
        if (!nand_flash_ids[i].name) {
+#ifndef CFG_NAND_QUIET_TEST
                printk (KERN_WARNING "No NAND device found!!!\n");
+#endif
                this->select_chip(mtd, -1);
                return 1;
        }