[U-Boot] [PATCH] fsl: Don't spew messages related to PHY fixup of device tree

Converted print statements that didn't have much meaning beyond debug from printf() to debug().
Signed-off-by: Kumar Gala galak@kernel.crashing.org --- board/freescale/common/sgmii_riser.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/board/freescale/common/sgmii_riser.c b/board/freescale/common/sgmii_riser.c index aeacb91..9326360 100644 --- a/board/freescale/common/sgmii_riser.c +++ b/board/freescale/common/sgmii_riser.c @@ -47,7 +47,7 @@ void fsl_sgmii_riser_fdt_fixup(void *fdt) const char *model; const char *path;
- printf("Updating PHY address for %s\n", dev->name); + debug("Updating PHY address for %s\n", dev->name); if (!strstr(dev->name, "eTSEC")) continue;
@@ -64,7 +64,7 @@ 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); + debug("%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 +84,7 @@ void fsl_sgmii_riser_fdt_fixup(void *fdt)
priv = dev->priv;
- printf("Device flags are %x\n", priv->flags); + debug("Device flags are %x\n", priv->flags); if (priv->flags & TSEC_SGMII) fdt_setprop_cell(fdt, phynode, "reg", priv->phyaddr); }

On Tue, Feb 17, 2009 at 8:45 PM, Kumar Gala galak@kernel.crashing.org wrote:
Converted print statements that didn't have much meaning beyond debug from printf() to debug().
Signed-off-by: Kumar Gala galak@kernel.crashing.org
I decided to solve this by removing the printfs. They aren't really useful for debugging, unless you're debugging the problems I already solved using them. :) They should have been removed before I committed the code.
Andy
participants (2)
-
Andy Fleming
-
Kumar Gala