Lines Matching refs:status
104 /* The interrupt status register is cleared by reading BMSR
189 int status;
194 status = phy_read(phydev, MII_BMSR);
196 if (status < 0)
197 return status;
204 /* Read link and autonegotiation status */
205 status = phy_read(phydev, MII_BMSR);
206 } while (status >= 0 && retry-- && status == control);
208 if (status < 0)
209 return status;
211 if ((status & BMSR_LSTATUS) == 0)