From 5e16d07501becacdc766132facaceba47db839a6 Mon Sep 17 00:00:00 2001 From: Amitoj Kaur Chawla Date: Sat, 24 Oct 2015 22:09:05 +0530 Subject: [PATCH] staging: rdma: amso1100: Drop unnecessary goto Deletes the jump to a label on the next line when the label isn't used anywhere else. The semantic patch used to find this is: // @r@ identifier l; @@ -if (...) goto l; -l: // Signed-off-by: Amitoj Kaur Chawla Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rdma/amso1100/c2_cm.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/rdma/amso1100/c2_cm.c b/drivers/staging/rdma/amso1100/c2_cm.c index 23bfa94fbd4e..f8dbdb9e0f66 100644 --- a/drivers/staging/rdma/amso1100/c2_cm.c +++ b/drivers/staging/rdma/amso1100/c2_cm.c @@ -278,10 +278,7 @@ int c2_llp_service_destroy(struct iw_cm_id *cm_id) err = -ENOMEM; goto bail0; } - if ((err = c2_errno(reply)) != 0) - goto bail1; - bail1: vq_repbuf_free(c2dev, reply); bail0: vq_req_free(c2dev, vq_req); -- 2.11.4.GIT