]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Debug printf's removed.
authorstroese <stroese>
Tue, 9 Dec 2003 14:57:03 +0000 (14:57 +0000)
committerstroese <stroese>
Tue, 9 Dec 2003 14:57:03 +0000 (14:57 +0000)
cpu/ppc4xx/miiphy.c

index 9f0a47f1b21ca509df6b728acf04636db3992749..fce5f4b648aa21d5b53d6620033d5c3381cf1092 100644 (file)
@@ -93,7 +93,9 @@ int miiphy_read (unsigned char addr, unsigned char reg,
        while ((in32 (EMAC_STACR) & EMAC_STACR_OC) == 0) {
                udelay (7);
                if (i > 5) {
+#if 0  /* test-only */
                        printf ("read err 1\n");
+#endif
                        return -1;
                }
                i++;
@@ -116,16 +118,20 @@ int miiphy_read (unsigned char addr, unsigned char reg,
        while ((sta_reg & EMAC_STACR_OC) == 0) {
                udelay (7);
                if (i > 5) {
+#if 0  /* test-only */
                        printf ("read err 2\n");
+#endif
                        return -1;
                }
                i++;
                sta_reg = in32 (EMAC_STACR);
        }
        if ((sta_reg & EMAC_STACR_PHYE) != 0) {
+#if 0  /* test-only */
                printf ("read err 3\n");
                printf ("a2: read: EMAC_STACR=0x%0lx, i=%d\n",
                        sta_reg, (int) i);      /* test-only */
+#endif
                return -1;
        }