revert parts of r27488 to uboot-lantiq
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 17 Jul 2011 19:27:24 +0000 (19:27 +0000)
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 17 Jul 2011 19:27:24 +0000 (19:27 +0000)
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27663 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/uboot-lantiq/files/board/infineon/easy50712/danube.c

index 51b7577..e3845cb 100644 (file)
@@ -259,12 +259,12 @@ static int external_switch_init(void)
        /* earlier no valid response is available, at least on Twinpass & Tantos @ 111MHz, M4530 platform */
        udelay(100000);
 
-       printf("\nsearching for Samurai switch ... ");
+       debug("\nsearching for Samurai switch ... ");
        if ( (miiphy_read(name, PHYADDR(SAMURAI_ID_REG0), &chipid0)==0) &&
             (miiphy_read(name, PHYADDR(SAMURAI_ID_REG1), &chipid1)==0) ) {
                if (((chipid0 & 0xFFF0) == ID_SAMURAI_0) &&
                    ((chipid1 & 0x000F) == ID_SAMURAI_1)) {
-                       printf("found");
+                       debug("found");
 
                        /* enable "Crossover Auto Detect" + defaults */
                        /* P0 */
@@ -288,11 +288,10 @@ static int external_switch_init(void)
                }
        }
 
-       printf("%04X %04x\n", chipid0, chipid1);
-       printf("\nsearching for TANTOS switch ... ");
+       debug("\nsearching for TANTOS switch ... ");
        if (miiphy_read(name, PHYADDR(0x101), &chipid0) == 0) {
                if (chipid0 == ID_TANTOS) {
-                       printf("found");
+                       debug("found");
 
                        /* P5 Basic Control: Force Link Up */
                        miiphy_write(name, PHYADDR(0xA1), 0x0004);
This page took 0.029711 seconds and 4 git commands to generate.