[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.10.1505071730090.2462@hadrien>
Date: Thu, 7 May 2015 17:30:52 +0200 (CEST)
From: Julia Lawall <julia.lawall@...6.fr>
To: Michal Simek <michal.simek@...inx.com>
cc: netdev@...r.kernel.org, Michal Simek <monstr@...str.eu>,
Sören Brinkmann <soren.brinkmann@...inx.com>,
Fabian Frederick <fabf@...net.be>,
linux-kernel@...r.kernel.org,
"David S. Miller" <davem@...emloft.net>,
Manuel Schölling <manuel.schoelling@....de>,
Julia Lawall <julia.lawall@...6.fr>,
Markus Elfring <elfring@...rs.sourceforge.net>,
Subbaraya Sundeep Bhatta <subbaraya.sundeep.bhatta@...inx.com>,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH] net: ll_temac: Use one return statement instead of two
On Thu, 7 May 2015, Michal Simek wrote:
> From: Michal Simek <monstr@...str.eu>
>
> Use one return statement instead of two to simplify the code.
> Both are returning the same value.
>
> Signed-off-by: Michal Simek <michal.simek@...inx.com>
The from should be the same as the signed off. You need From if you want
something different than what is naturally put by your mailer. But that
doesn't see to be the case.
julia
> ---
>
> drivers/net/ethernet/xilinx/ll_temac_main.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c
> index 690a4c36b316..ca640d04fd93 100644
> --- a/drivers/net/ethernet/xilinx/ll_temac_main.c
> +++ b/drivers/net/ethernet/xilinx/ll_temac_main.c
> @@ -688,10 +688,8 @@ static int temac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
> cur_p = &lp->tx_bd_v[lp->tx_bd_tail];
>
> if (temac_check_tx_bd_space(lp, num_frag)) {
> - if (!netif_queue_stopped(ndev)) {
> + if (!netif_queue_stopped(ndev))
> netif_stop_queue(ndev);
> - return NETDEV_TX_BUSY;
> - }
> return NETDEV_TX_BUSY;
> }
>
> --
> 2.3.5
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists