Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1031245AbcDMOUB (ORCPT ); Wed, 13 Apr 2016 10:20:01 -0400 Received: from mail-lf0-f43.google.com ([209.85.215.43]:34961 "EHLO mail-lf0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1031214AbcDMOUA (ORCPT ); Wed, 13 Apr 2016 10:20:00 -0400 Subject: Re: [RESEND PATCH net-next] phy: keep the BCMR_LOOPBACK bit while setup forced mode To: Weidong Wang , David Miller , f.fainelli@gmail.com References: <570E3488.9060403@huawei.com> Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org From: Sergei Shtylyov Message-ID: <570E558C.9010304@cogentembedded.com> Date: Wed, 13 Apr 2016 17:19:56 +0300 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 In-Reply-To: <570E3488.9060403@huawei.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1020 Lines: 37 Hello. On 4/13/2016 2:59 PM, Weidong Wang wrote: > When tested the PHY SGMII Loopback,: > 1.set the LOOPBACK bit, > 2.set the autoneg to AUTONEG_DISABLE, it calls the > genphy_setup_forced which will clear the bit. > > So just keep the LOOPBACK bit while setup forced mode. > > Signed-off-by: Weidong Wang > --- > drivers/net/phy/phy_device.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c > index e551f3a..8da4b80 100644 > --- a/drivers/net/phy/phy_device.c > +++ b/drivers/net/phy/phy_device.c > @@ -1124,7 +1124,9 @@ static int genphy_config_advert(struct phy_device *phydev) > int genphy_setup_forced(struct phy_device *phydev) > { > int ctl = 0; > + int val = phy_read(phydev, MII_BMCR); Please place this declaration first, DaveM prefers declarations to be sorted from longest to shortest. > > + ctl |= val & BMCR_LOOPBACK; Just =, removing the 'ctl' initializer, please. [...] MBR, Sergei