[source] oxnas: remove some kprintf calls from NAND driver

LEDE Commits lede-commits at lists.infradead.org
Sat Jan 7 06:40:54 PST 2017


dangole pushed a commit to source.git, branch master:
https://git.lede-project.org/870b7bee44492bf99796b94075b42e4213caf6a9

commit 870b7bee44492bf99796b94075b42e4213caf6a9
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Sat Jan 7 14:44:47 2017 +0100

    oxnas: remove some kprintf calls from NAND driver
    
    They were added for debugging and I forgot to remove them.
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
 target/linux/oxnas/files/drivers/mtd/nand/oxnas_nand.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/target/linux/oxnas/files/drivers/mtd/nand/oxnas_nand.c b/target/linux/oxnas/files/drivers/mtd/nand/oxnas_nand.c
index 6cb17cd..36807b7 100644
--- a/target/linux/oxnas/files/drivers/mtd/nand/oxnas_nand.c
+++ b/target/linux/oxnas/files/drivers/mtd/nand/oxnas_nand.c
@@ -120,7 +120,6 @@ static int oxnas_nand_probe(struct platform_device *pdev)
 
 	/* Only a single chip node is supported */
 	count = of_get_child_count(np);
-	pr_info("########### count: %d\n", count);
 	if (count > 1)
 		return -EINVAL;
 
@@ -150,12 +149,10 @@ static int oxnas_nand_probe(struct platform_device *pdev)
 
 		/* Scan to find existence of the device */
 		err = nand_scan(mtd, 1);
-		pr_info("########### nand_scan err: %d\n", err);
 		if (err)
 			return err;
 
 		err = mtd_device_register(mtd, NULL, 0);
-		pr_info("########### mtd_device_register err: %d\n", err);
 		if (err) {
 			nand_release(mtd);
 			return err;
@@ -165,8 +162,6 @@ static int oxnas_nand_probe(struct platform_device *pdev)
 		++nchips;
 	}
 
-	pr_info("########### nchips: %d\n", nchips);
-
 	/* Exit if no chips found */
 	if (!nchips)
 		return -ENODEV;



More information about the lede-commits mailing list