Change "mii info" to not print an error upon missing PHY at address
Patch by Stefan Roese, 07 Aug 2006
This commit is contained in:
parent
a2c95a7224
commit
e335496a32
|
@ -2,6 +2,9 @@
|
||||||
Changes since U-Boot 1.1.4:
|
Changes since U-Boot 1.1.4:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Change "mii info" to not print an error upon missing PHY at address
|
||||||
|
Patch by Stefan Roese, 07 Aug 2006
|
||||||
|
|
||||||
* PPC440 DDR setup: Set SDRAM0_CFG0[PMU]=0 for best performance
|
* PPC440 DDR setup: Set SDRAM0_CFG0[PMU]=0 for best performance
|
||||||
AMCC suggested to set the PMU bit to 0 for best performace on
|
AMCC suggested to set the PMU bit to 0 for best performace on
|
||||||
the PPC440 DDR controller.
|
the PPC440 DDR controller.
|
||||||
|
|
|
@ -117,8 +117,6 @@ int do_mii (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
||||||
miiphy_speed (devname, j),
|
miiphy_speed (devname, j),
|
||||||
(miiphy_duplex (devname, j) == FULL)
|
(miiphy_duplex (devname, j) == FULL)
|
||||||
? "FDX" : "HDX");
|
? "FDX" : "HDX");
|
||||||
} else {
|
|
||||||
puts ("Error reading info from the PHY\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (op == 'r') {
|
} else if (op == 'r') {
|
||||||
|
@ -503,8 +501,6 @@ int do_mii (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
||||||
miiphy_speed (devname, j),
|
miiphy_speed (devname, j),
|
||||||
(miiphy_duplex (devname, j) == FULL)
|
(miiphy_duplex (devname, j) == FULL)
|
||||||
? "FDX" : "HDX");
|
? "FDX" : "HDX");
|
||||||
} else {
|
|
||||||
puts ("Error reading info from the PHY\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (op[0] == 'r') {
|
} else if (op[0] == 'r') {
|
||||||
|
|
Loading…
Reference in New Issue