diff options
author | Christophe Jaillet <christophe.jaillet@wanadoo.fr> | 2017-06-10 11:19:20 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-08-17 18:06:37 -0400 |
commit | 836daee2df01b79e9cf54b80b985aea6cff05f57 (patch) | |
tree | 6644958dd8a2ee85a5f104156525a594a6d97461 /drivers/infiniband/hw/cxgb4 | |
parent | 520eccdfe187591a51ea9ab4c1a024ae4d0f68d9 (diff) | |
download | linux-836daee2df01b79e9cf54b80b985aea6cff05f57.tar.bz2 |
cxgb4: Remove some dead code
This 'BUG_ON(!ep)' can never trigger because we have:
if (!ep)
return 0;
just a few lines above. So it can be removed safely.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb4')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/cm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index e49b34c3b136..ceaa2fa54d32 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -2871,7 +2871,6 @@ static int close_con_rpl(struct c4iw_dev *dev, struct sk_buff *skb) return 0; pr_debug("%s ep %p tid %u\n", __func__, ep, ep->hwtid); - BUG_ON(!ep); /* The cm_id may be null if we failed to connect */ mutex_lock(&ep->com.mutex); |