]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fsl: Remove unnecessary debug printfs
authorAndy Fleming <afleming@freescale.com>
Sat, 7 Mar 2009 01:05:52 +0000 (19:05 -0600)
committerAndy Fleming <afleming@freescale.com>
Mon, 9 Mar 2009 22:46:10 +0000 (17:46 -0500)
These were left in accidentally, and are not really useful unless the
code is as broken as it was when it was being developed.

Signed-off-by: Andy Fleming <afleming@freescale.com>
board/freescale/common/sgmii_riser.c

index aeacb91bc13875c2e874d205c8b2ab4742a3cb18..4f40a1d6d44679c116acd391bf466e31bfbafa69 100644 (file)
@@ -47,7 +47,6 @@ void fsl_sgmii_riser_fdt_fixup(void *fdt)
                const char *model;
                const char *path;
 
-               printf("Updating PHY address for %s\n", dev->name);
                if (!strstr(dev->name, "eTSEC"))
                        continue;
 
@@ -64,7 +63,6 @@ void fsl_sgmii_riser_fdt_fixup(void *fdt)
 
                model = fdt_getprop(fdt, enet_node, "model", NULL);
 
-               printf("%s's model is %s\n", enet, model);
                /*
                 * We only want to do this to eTSECs.  On some platforms
                 * there are more than one type of gianfar-style ethernet
@@ -84,7 +82,6 @@ void fsl_sgmii_riser_fdt_fixup(void *fdt)
 
                priv = dev->priv;
 
-               printf("Device flags are %x\n", priv->flags);
                if (priv->flags & TSEC_SGMII)
                        fdt_setprop_cell(fdt, phynode, "reg", priv->phyaddr);
        }