Explorar o código

infiniband: hw: Drop unnecessary continue

Continue at the bottom of a loop are removed.
Issue found using drop_continue.cocci Coccinelle script.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Arushi %!s(int64=7) %!d(string=hai) anos
pai
achega
666fe24bbe
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      drivers/infiniband/hw/qib/qib_init.c

+ 1 - 3
drivers/infiniband/hw/qib/qib_init.c

@@ -678,11 +678,9 @@ int qib_init(struct qib_devdata *dd, int reinit)
 		lastfail = qib_create_rcvhdrq(dd, rcd);
 		lastfail = qib_create_rcvhdrq(dd, rcd);
 		if (!lastfail)
 		if (!lastfail)
 			lastfail = qib_setup_eagerbufs(rcd);
 			lastfail = qib_setup_eagerbufs(rcd);
-		if (lastfail) {
+		if (lastfail)
 			qib_dev_err(dd,
 			qib_dev_err(dd,
 				"failed to allocate kernel ctxt's rcvhdrq and/or egr bufs\n");
 				"failed to allocate kernel ctxt's rcvhdrq and/or egr bufs\n");
-			continue;
-		}
 	}
 	}
 
 
 	for (pidx = 0; pidx < dd->num_pports; ++pidx) {
 	for (pidx = 0; pidx < dd->num_pports; ++pidx) {