Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753447AbcDNCSn (ORCPT ); Wed, 13 Apr 2016 22:18:43 -0400 Received: from szxga02-in.huawei.com ([119.145.14.65]:58906 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751937AbcDNCSm (ORCPT ); Wed, 13 Apr 2016 22:18:42 -0400 Message-ID: <570EFDF5.7090106@huawei.com> Date: Thu, 14 Apr 2016 10:18:29 +0800 From: Weidong Wang User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Sergei Shtylyov CC: David Miller , , , Subject: Re: [RESEND PATCH net-next] phy: keep the BCMR_LOOPBACK bit while setup forced mode References: <570E3488.9060403@huawei.com> <570E558C.9010304@cogentembedded.com> In-Reply-To: <570E558C.9010304@cogentembedded.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.177.21.100] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020205.570EFDFD.00CE,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2013-06-18 04:22:30, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: a2849a0cae47772ef84ff499e34fe59e Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1154 Lines: 45 On 2016/4/13 22:19, Sergei Shtylyov wrote: > 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 > Got it. Regards, Weidong > >