|
@@ -261,7 +261,7 @@ void phy_sanitize_settings(struct phy_device *phydev)
|
|
|
|
|
|
/* Sanitize settings based on PHY capabilities */
|
|
|
if ((features & SUPPORTED_Autoneg) == 0)
|
|
|
- phydev->autoneg = 0;
|
|
|
+ phydev->autoneg = AUTONEG_DISABLE;
|
|
|
|
|
|
idx = phy_find_valid(phy_find_setting(phydev->speed, phydev->duplex),
|
|
|
features);
|
|
@@ -374,7 +374,7 @@ int phy_mii_ioctl(struct phy_device *phydev,
|
|
|
if (mii_data->phy_id == phydev->addr) {
|
|
|
switch(mii_data->reg_num) {
|
|
|
case MII_BMCR:
|
|
|
- if (val & (BMCR_RESET|BMCR_ANENABLE))
|
|
|
+ if ((val & (BMCR_RESET|BMCR_ANENABLE)) == 0)
|
|
|
phydev->autoneg = AUTONEG_DISABLE;
|
|
|
else
|
|
|
phydev->autoneg = AUTONEG_ENABLE;
|