Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1523043
| From | Heinrich Schuchardt <xypron.debian@gmx.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 03/15] net: bcm63xx_enet: Utilize phy_ethtool_nway_reset |
| Date | 2016-11-15 21:10 +0100 |
| Message-ID | <sDSdj-19S-7@gated-at.bofh.it> (permalink) |
| References | <sDQlb-8ps-5@gated-at.bofh.it> <sDQuR-8u6-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 11/15/2016 07:06 PM, Florian Fainelli wrote:
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Each patch of your patch series should have a commit message.
You can add the missing commit messages with
git rebase -i HEAD~15
choosing reword.
Please, add a cover letter message describing the patch series using
git format-patch -ns --cover-letter HEAD~15..HEAD
and provide a summary in the 0/15 message.
The cover letter and all patches should be in one mails thhread.
If you put all messages into one directory you can send the series as
one mail thread with
git send-email <directory>
> ---
> drivers/net/ethernet/broadcom/bcm63xx_enet.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/net/ethernet/broadcom/bcm63xx_enet.c b/drivers/net/ethernet/broadcom/bcm63xx_enet.c
> index 5c7acef1de2e..a43ab90c051e 100644
> --- a/drivers/net/ethernet/broadcom/bcm63xx_enet.c
> +++ b/drivers/net/ethernet/broadcom/bcm63xx_enet.c
> @@ -1434,11 +1434,8 @@ static int bcm_enet_nway_reset(struct net_device *dev)
> struct bcm_enet_priv *priv;
>
> priv = netdev_priv(dev);
> - if (priv->has_phy) {
> - if (!dev->phydev)
> - return -ENODEV;
> - return genphy_restart_aneg(dev->phydev);
> - }
> + if (priv->has_phy)
> + return phy_ethtool_nway_reset(dev),
>
> return -EOPNOTSUPP;
> }
>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 03/15] net: bcm63xx_enet: Utilize phy_ethtool_nway_reset Florian Fainelli <f.fainelli@gmail.com> - 2016-11-15 19:20 +0100
Re: [PATCH 03/15] net: bcm63xx_enet: Utilize phy_ethtool_nway_reset Heinrich Schuchardt <xypron.debian@gmx.de> - 2016-11-15 21:10 +0100
Re: [PATCH 03/15] net: bcm63xx_enet: Utilize phy_ethtool_nway_reset Florian Fainelli <f.fainelli@gmail.com> - 2016-11-15 21:20 +0100
csiph-web