]> git.sur5r.net Git - u-boot/commitdiff
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 a21526b971975dcf1ab1800c88f047d2ef864d65..d2d5324c11851a71691c8e0a3cef345068b71690 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 b7a5d32fb3fb1c5320157ff861be21ba61fd68ef..b0030857c698d5043ee028d4f0190fcf89284901 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;
        }