mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-09 12:13:00 -04:00
Debug printf's removed.
This commit is contained in:
parent
939403bca9
commit
38a951956b
@ -93,7 +93,9 @@ int miiphy_read (unsigned char addr, unsigned char reg,
|
|||||||
while ((in32 (EMAC_STACR) & EMAC_STACR_OC) == 0) {
|
while ((in32 (EMAC_STACR) & EMAC_STACR_OC) == 0) {
|
||||||
udelay (7);
|
udelay (7);
|
||||||
if (i > 5) {
|
if (i > 5) {
|
||||||
|
#if 0 /* test-only */
|
||||||
printf ("read err 1\n");
|
printf ("read err 1\n");
|
||||||
|
#endif
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
@ -116,16 +118,20 @@ int miiphy_read (unsigned char addr, unsigned char reg,
|
|||||||
while ((sta_reg & EMAC_STACR_OC) == 0) {
|
while ((sta_reg & EMAC_STACR_OC) == 0) {
|
||||||
udelay (7);
|
udelay (7);
|
||||||
if (i > 5) {
|
if (i > 5) {
|
||||||
|
#if 0 /* test-only */
|
||||||
printf ("read err 2\n");
|
printf ("read err 2\n");
|
||||||
|
#endif
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
sta_reg = in32 (EMAC_STACR);
|
sta_reg = in32 (EMAC_STACR);
|
||||||
}
|
}
|
||||||
if ((sta_reg & EMAC_STACR_PHYE) != 0) {
|
if ((sta_reg & EMAC_STACR_PHYE) != 0) {
|
||||||
|
#if 0 /* test-only */
|
||||||
printf ("read err 3\n");
|
printf ("read err 3\n");
|
||||||
printf ("a2: read: EMAC_STACR=0x%0lx, i=%d\n",
|
printf ("a2: read: EMAC_STACR=0x%0lx, i=%d\n",
|
||||||
sta_reg, (int) i); /* test-only */
|
sta_reg, (int) i); /* test-only */
|
||||||
|
#endif
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user