1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-24 20:09:55 +02:00

generic: ar8216: use mdiobus_write in ar8236_hw_init

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30838 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2012-03-07 16:32:31 +00:00
parent 044f0f9c5a
commit 6977635623

View File

@ -643,10 +643,10 @@ ar8236_hw_init(struct ar8216_priv *priv) {
/* Initialize the PHYs */
bus = priv->phy->bus;
for (i = 0; i < 5; i++) {
bus->write(bus, i, MII_ADVERTISE,
mdiobus_write(bus, i, MII_ADVERTISE,
ADVERTISE_ALL | ADVERTISE_PAUSE_CAP |
ADVERTISE_PAUSE_ASYM);
bus->write(bus, i, MII_BMCR, BMCR_RESET | BMCR_ANENABLE);
mdiobus_write(bus, i, MII_BMCR, BMCR_RESET | BMCR_ANENABLE);
}
msleep(1000);