Netdev List
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Raghuram Chary J <raghuramchary.jallipalli@microchip.com>,
	davem@davemloft.net
Cc: netdev@vger.kernel.org, unglinuxdriver@microchip.com,
	woojung.huh@microchip.com
Subject: Re: [PATCH net 1/3] lan78xx: Set ASD in MAC_CR when EEE is enabled.
Date: Thu, 22 Mar 2018 12:26:35 +0300	[thread overview]
Message-ID: <82838095-9790-c2f7-2065-94ec633ae7dd@cogentembedded.com> (raw)
In-Reply-To: <20180322074106.19987-1-raghuramchary.jallipalli@microchip.com>

Hello!

    Only stylistic comments.

On 3/22/2018 10:41 AM, Raghuram Chary J wrote:

> Description:
> EEE does not work with lan7800 when AutoSpeed is not set.
> (This can happen when EEPROM is not populated or configured incorrectly)
> 
> Root-Cause:
> When EEE is enabled, the mac config register ASD is not set
> i.e in default state,causing EEE fail.

    Need a period after "i.e" and a space after comma.

> Fix:
> Set the register when eeprom is not present.
> 
> Fixes: 55d7de9de6c3 ("Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet device driver")
> Signed-off-by: Raghuram Chary J <raghuramchary.jallipalli@microchip.com>
> ---
>   drivers/net/usb/lan78xx.c | 10 ++++++++++
>   1 file changed, 10 insertions(+)
> 
> diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c
> index 11176070b345..e2d26f9c0f6a 100644
> --- a/drivers/net/usb/lan78xx.c
> +++ b/drivers/net/usb/lan78xx.c
> @@ -2351,6 +2351,7 @@ static int lan78xx_reset(struct lan78xx_net *dev)
>   	u32 buf;
>   	int ret = 0;
>   	unsigned long timeout;
> +	u8 sig;
>   
>   	ret = lan78xx_read_reg(dev, HW_CFG, &buf);
>   	buf |= HW_CFG_LRST_;
> @@ -2450,6 +2451,15 @@ static int lan78xx_reset(struct lan78xx_net *dev)
>   	/* LAN7801 only has RGMII mode */
>   	if (dev->chipid == ID_REV_CHIP_ID_7801_)
>   		buf &= ~MAC_CR_GMII_EN_;
> +
> +	if(dev->chipid == ID_REV_CHIP_ID_7800_) {

    Please run your patches thru scripts/checkpatch.pl -- it would have 
complained because of a missing space between *if* and (.

> +		ret = lan78xx_read_raw_eeprom(dev, 0, 1, &sig);
> +		if ((!ret) && (sig != EEPROM_INDICATOR)) {

    No need for the inner parens here, especially the 1st pair...

> +			/*Implies there is no external eeprom. Set mac speed*/

    Please add space after /*  and before */.

> +			netdev_info(dev->net, "No External EEPROM. Setting MAC Speed \n");
> +			buf |= MAC_CR_AUTO_DUPLEX_ | MAC_CR_AUTO_SPEED_;
> +		}
> +	}
>   	ret = lan78xx_write_reg(dev, MAC_CR, buf);
>   
>   	ret = lan78xx_read_reg(dev, MAC_TX, &buf);

MBR, Sergei

  reply	other threads:[~2018-03-22  9:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-22  7:41 [PATCH net 1/3] lan78xx: Set ASD in MAC_CR when EEE is enabled Raghuram Chary J
2018-03-22  9:26 ` Sergei Shtylyov [this message]
2018-03-23  7:21   ` RaghuramChary.Jallipalli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=82838095-9790-c2f7-2065-94ec633ae7dd@cogentembedded.com \
    --to=sergei.shtylyov@cogentembedded.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=raghuramchary.jallipalli@microchip.com \
    --cc=unglinuxdriver@microchip.com \
    --cc=woojung.huh@microchip.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox