summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSriram <srk@ti.com>2009-09-24 16:39:36 +0530
committerJustin Waters <justin.waters@timesys.com>2009-10-21 16:46:36 -0400
commitca01b1e7a4d895d0994a3b5f947cfe48788e3355 (patch)
tree4182f724a8abe03f6af9d1831e97ea4a4b534ef2
parentb57d400a5778b7b5c2176f2d1edd0aa6246f8a10 (diff)
Cleanup extra prints
removed extra messages that print status information during bootup
-rw-r--r--board/omap3/omap3517evm/omap3517evm.c2
-rw-r--r--drivers/net/ticpgmac.c3
2 files changed, 0 insertions, 5 deletions
diff --git a/board/omap3/omap3517evm/omap3517evm.c b/board/omap3/omap3517evm/omap3517evm.c
index e9c3c5c6e7..9f5774d28d 100644
--- a/board/omap3/omap3517evm/omap3517evm.c
+++ b/board/omap3/omap3517evm/omap3517evm.c
@@ -152,7 +152,6 @@ static void setup_net_chip(void)
writel(readl(&gpio1_base->oe) & ~(GPIO30), &gpio1_base->oe);
/* Now send a pulse on the GPIO pin */
- printf("Driving GPIO 30 low \n");
writel(GPIO30, &gpio1_base->cleardataout);
ctr = 0;
do{
@@ -160,7 +159,6 @@ static void setup_net_chip(void)
ctr++;
}while (ctr <300);
- printf("Driving GPIO 30 high \n");
writel(GPIO30, &gpio1_base->setdataout);
ctr =0;
/* allow the PHY to stabilize and settle down */
diff --git a/drivers/net/ticpgmac.c b/drivers/net/ticpgmac.c
index 6d7f64c8f7..841bea59dc 100644
--- a/drivers/net/ticpgmac.c
+++ b/drivers/net/ticpgmac.c
@@ -441,10 +441,7 @@ static int cpgmac_eth_hw_init(void)
/* Override HW configuration value that were latched */
cpgmac_eth_phy_read(active_phy_addr, SPL_VEND_REG, &tmp);
- printf("read HW config for PHY 0x%x\n",tmp);
-// tmp |= (1 << 14) | ( 7 << 5) ;
tmp = 0x60e0;
- printf("Program HW config as 0x%x \n",tmp);
cpgmac_eth_phy_write(active_phy_addr,SPL_VEND_REG,tmp);
/* Soft reset the PHY */