Commit baf3fbf2 authored by Jason Yan's avatar Jason Yan Committed by Martin K. Petersen
Browse files

scsi: mpt3sas: Remove NULL check before freeing function

Fix the following coccicheck warning:

drivers/scsi/mpt3sas/mpt3sas_base.c:4906:3-19: WARNING: NULL check
before some freeing functions is not needed.

Link: https://lore.kernel.org/r/20200418095850.34883-1-yanaijie@huawei.com


Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 2e9ef0fc
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -4887,7 +4887,6 @@ _base_release_memory_pools(struct MPT3SAS_ADAPTER *ioc)
					ioc->pcie_sg_lookup[i].pcie_sgl,
					ioc->pcie_sg_lookup[i].pcie_sgl_dma);
		}
		if (ioc->pcie_sgl_dma_pool)
		dma_pool_destroy(ioc->pcie_sgl_dma_pool);
	}