Writing BMCR_RESET bit will reset MII_BMCR to default values. This is clearly not what we want.
Signed-off-by: Domen Puncer <[EMAIL PROTECTED]> --- drivers/net/phy/phy_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: work-powerpc.git/drivers/net/phy/phy_device.c =================================================================== --- work-powerpc.git.orig/drivers/net/phy/phy_device.c +++ work-powerpc.git/drivers/net/phy/phy_device.c @@ -364,7 +364,7 @@ EXPORT_SYMBOL(genphy_config_advert); */ int genphy_setup_forced(struct phy_device *phydev) { - int ctl = BMCR_RESET; + int ctl = 0; phydev->pause = phydev->asym_pause = 0; - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html