[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201214134746.5044-1-zhengyongjun3@huawei.com>
Date: Mon, 14 Dec 2020 21:47:46 +0800
From: Zheng Yongjun <zhengyongjun3@...wei.com>
To: <agross@...nel.org>, <bjorn.andersson@...aro.org>,
<joro@...tes.org>, <will@...nel.org>,
<linux-arm-msm@...r.kernel.org>,
<iommu@...ts.linux-foundation.org>, <linux-kernel@...r.kernel.org>
CC: Zheng Yongjun <zhengyongjun3@...wei.com>
Subject: [PATCH -next] iommu: msm_iommu: Delete useless kfree code
The parameter of kfree function is NULL, so kfree code is useless, delete it.
Signed-off-by: Zheng Yongjun <zhengyongjun3@...wei.com>
---
drivers/iommu/msm_iommu.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/iommu/msm_iommu.c b/drivers/iommu/msm_iommu.c
index 3615cd6241c4..1286674a1322 100644
--- a/drivers/iommu/msm_iommu.c
+++ b/drivers/iommu/msm_iommu.c
@@ -319,7 +319,7 @@ static struct iommu_domain *msm_iommu_domain_alloc(unsigned type)
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
if (!priv)
- goto fail_nomem;
+ return NULL;
INIT_LIST_HEAD(&priv->list_attached);
@@ -328,10 +328,6 @@ static struct iommu_domain *msm_iommu_domain_alloc(unsigned type)
priv->domain.geometry.force_aperture = true;
return &priv->domain;
-
-fail_nomem:
- kfree(priv);
- return NULL;
}
static void msm_iommu_domain_free(struct iommu_domain *domain)
--
2.22.0
Powered by blists - more mailing lists