diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-12-09 04:50:22 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-10 22:57:34 (GMT) |
commit | 0e51d67ebb8e109a0990a13dafa937fb469aa3fb (patch) | |
tree | b3d34c5d505a3c6f5b447c7bbe8fd5ee185fbb0d | |
parent | 040253c931e336360453c8d81f76d1b010b2b5e7 (diff) | |
download | linux-0e51d67ebb8e109a0990a13dafa937fb469aa3fb.tar.xz |
stmmac: Remove redundant unlikely()
IS_ERR() already implies unlikely(), so it can be omitted here.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/stmmac/stmmac_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c index c0dc785..20f803d 100644 --- a/drivers/net/stmmac/stmmac_main.c +++ b/drivers/net/stmmac/stmmac_main.c @@ -949,7 +949,7 @@ static int stmmac_sw_tso(struct stmmac_priv *priv, struct sk_buff *skb) skb, skb->len); segs = skb_gso_segment(skb, priv->dev->features & ~NETIF_F_TSO); - if (unlikely(IS_ERR(segs))) + if (IS_ERR(segs)) goto sw_tso_end; do { |