]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
IB: Drop code after return statement
authorJulia Lawall <julia@diku.dk>
Sun, 21 Sep 2008 03:06:32 +0000 (20:06 -0700)
committerRoland Dreier <rolandd@cisco.com>
Sun, 21 Sep 2008 03:06:32 +0000 (20:06 -0700)
A break after a return serves no purpose, remove it.

Signed-off-by: Julia Lawall <julia@diku.dk>
Reviewed-by: Richard Genoud <richard.genoud@gmail.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/hw/amso1100/c2_provider.c
drivers/infiniband/hw/nes/nes_verbs.c

index 2acf9b62cf9936acf72f25f2c15bc8bdee41493d..69580e282af012a918fb6bf258333a34f258a584 100644 (file)
@@ -272,7 +272,6 @@ static struct ib_qp *c2_create_qp(struct ib_pd *pd,
                pr_debug("%s: Invalid QP type: %d\n", __func__,
                        init_attr->qp_type);
                return ERR_PTR(-EINVAL);
-               break;
        }
 
        if (err) {
index d79942e849799341e8f676f2436dacd6be2bd793..932e56fcf77413fd7f4068a25f4be24dccf22b59 100644 (file)
@@ -1467,7 +1467,6 @@ static struct ib_qp *nes_create_qp(struct ib_pd *ibpd,
                default:
                        nes_debug(NES_DBG_QP, "Invalid QP type: %d\n", init_attr->qp_type);
                        return ERR_PTR(-EINVAL);
-                       break;
        }
 
        /* update the QP table */
@@ -2498,7 +2497,6 @@ static struct ib_mr *nes_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
                        nes_debug(NES_DBG_MR, "Leaving, ibmr=%p", ibmr);
 
                        return ibmr;
-                       break;
                case IWNES_MEMREG_TYPE_QP:
                case IWNES_MEMREG_TYPE_CQ:
                        nespbl = kzalloc(sizeof(*nespbl), GFP_KERNEL);
@@ -2572,7 +2570,6 @@ static struct ib_mr *nes_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
                        nesmr->ibmr.lkey = -1;
                        nesmr->mode = req.reg_type;
                        return &nesmr->ibmr;
-                       break;
        }
 
        return ERR_PTR(-ENOSYS);