Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3824246d authored by Michal Simek's avatar Michal Simek Committed by David S. Miller
Browse files

net: ll_temac: Use one return statement instead of two



Use one return statement instead of two to simplify the code.
Both are returning the same value.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent db65f35f
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -688,12 +688,10 @@ 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;
	}

	cur_p->app0 = 0;
	if (skb->ip_summed == CHECKSUM_PARTIAL) {