From: Yuval Shaia <yuval.shaia@oracle.com>
To: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Cc: davem@davemloft.net, jarod@redhat.com, tklauser@distanz.ch,
tremyfr@gmail.com, netdev@vger.kernel.org,
linux-parisc@vger.kernel.org
Subject: Re: [PATCH] net/dec: Make __de_get_link_ksettings return void
Date: Sun, 4 Jun 2017 22:52:42 +0300 [thread overview]
Message-ID: <20170604195241.GB7045@yuvallap> (raw)
In-Reply-To: <4391c380-f7f6-d549-a225-716b9b9df664@cogentembedded.com>
On Sun, Jun 04, 2017 at 08:22:05PM +0300, Sergei Shtylyov wrote:
> Hello!
>
> On 6/4/2017 8:08 PM, Yuval Shaia wrote:
>
> > Make return value void since function never return meaningfull value
>
> You only make 1 of 2 functions void. It looks like there should be 2 patches.
And what would be the second function?
>
> >
> > Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com>
> > ---
> > drivers/net/ethernet/dec/tulip/de2104x.c | 11 ++++-------
> > 1 file changed, 4 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/dec/tulip/de2104x.c b/drivers/net/ethernet/dec/tulip/de2104x.c
> > index 91b8f6f..c87b8cc 100644
> > --- a/drivers/net/ethernet/dec/tulip/de2104x.c
> > +++ b/drivers/net/ethernet/dec/tulip/de2104x.c
> > @@ -1483,8 +1483,8 @@ static void __de_get_regs(struct de_private *de, u8 *buf)
> > de_rx_missed(de, rbuf[8]);
> > }
> >
> > -static int __de_get_link_ksettings(struct de_private *de,
> > - struct ethtool_link_ksettings *cmd)
> > +static void __de_get_link_ksettings(struct de_private *de,
> > + struct ethtool_link_ksettings *cmd)
> > {
> > ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
> > de->media_supported);
> > @@ -1517,8 +1517,6 @@ static int __de_get_link_ksettings(struct de_private *de,
> > cmd->base.autoneg = AUTONEG_ENABLE;
> >
> > /* ignore maxtxpkt, maxrxpkt for now */
> > -
> > - return 0;
> > }
> >
> > static int __de_set_link_ksettings(struct de_private *de,
> > @@ -1615,13 +1613,12 @@ static int de_get_link_ksettings(struct net_device *dev,
> > struct ethtool_link_ksettings *cmd)
> > {
> > struct de_private *de = netdev_priv(dev);
> > - int rc;
> >
> > spin_lock_irq(&de->lock);
> > - rc = __de_get_link_ksettings(de, cmd);
> > + __de_get_link_ksettings(de, cmd);
> > spin_unlock_irq(&de->lock);
> >
> > - return rc;
> > + return 0;
> > }
> >
> > static int de_set_link_ksettings(struct net_device *dev,
> >
>
> MBR, Sergei
>
next prev parent reply other threads:[~2017-06-04 19:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-04 17:08 [PATCH] net/dec: Make __de_get_link_ksettings return void Yuval Shaia
2017-06-04 17:22 ` Sergei Shtylyov
2017-06-04 17:24 ` Sergei Shtylyov
2017-06-04 19:52 ` Yuval Shaia [this message]
2017-06-05 15:01 ` David Miller
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=20170604195241.GB7045@yuvallap \
--to=yuval.shaia@oracle.com \
--cc=davem@davemloft.net \
--cc=jarod@redhat.com \
--cc=linux-parisc@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=sergei.shtylyov@cogentembedded.com \
--cc=tklauser@distanz.ch \
--cc=tremyfr@gmail.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