]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
RDMA/i40iw: Remove useless NULL checks
authorLeon Romanovsky <leonro@mellanox.com>
Mon, 20 May 2019 06:54:24 +0000 (09:54 +0300)
committerJason Gunthorpe <jgg@mellanox.com>
Tue, 21 May 2019 18:50:53 +0000 (15:50 -0300)
There is no need to check existence of structures to be destroyed.

Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/i40iw/i40iw_verbs.c

index 5689d742bafb8cc3e15060dd946d998a260a844e..a10a30d44b322ffc041761e8cda9c860726291e5 100644 (file)
@@ -1070,11 +1070,6 @@ static int i40iw_destroy_cq(struct ib_cq *ib_cq, struct ib_udata *udata)
        struct i40iw_device *iwdev;
        struct i40iw_sc_cq *cq;
 
-       if (!ib_cq) {
-               i40iw_pr_err("ib_cq == NULL\n");
-               return 0;
-       }
-
        iwcq = to_iwcq(ib_cq);
        iwdev = to_iwdev(ib_cq->device);
        cq = &iwcq->sc_cq;
@@ -2771,9 +2766,6 @@ void i40iw_port_ibevent(struct i40iw_device *iwdev)
  */
 void i40iw_destroy_rdma_device(struct i40iw_ib_device *iwibdev)
 {
-       if (!iwibdev)
-               return;
-
        ib_unregister_device(&iwibdev->ibdev);
        wait_event_timeout(iwibdev->iwdev->close_wq,
                           !atomic64_read(&iwibdev->iwdev->use_count),