Linux IOMMU Development
 help / color / mirror / Atom feed
* [PATCH] iommu/mediatek: Remove a unnecessary checking for larbid
@ 2023-07-04 11:56 Yong Wu
  2023-07-04 12:19 ` AngeloGioacchino Del Regno
  0 siblings, 1 reply; 5+ messages in thread
From: Yong Wu @ 2023-07-04 11:56 UTC (permalink / raw)
  To: Joerg Roedel, Matthias Brugger
  Cc: Will Deacon, Robin Murphy, AngeloGioacchino Del Regno, Yong Wu,
	iommu, linux-mediatek, linux-kernel, linux-arm-kernel

Fix a coverity issue:

>>assignment: Assigning: larbid = (fwspec->ids[0] >> 5) & 0x1fU.
	larbid = MTK_M4U_TO_LARB(fwspec->ids[0]);
>>between: At condition larbid >= 32U, the value of larbid must be between
>>0 and 31.
>>dead_error_condition: The condition larbid >= 32U cannot be true.
	if (larbid >= MTK_LARB_NR_MAX)
>>CID 11306470 (#1 of 1): Logically dead code (DEADCODE)
>>dead_error_line: Execution cannot reach this statement:
>>return ERR_PTR(-22L);
        	return ERR_PTR(-EINVAL);

The checking "if (larbid >= MTK_LARB_NR_MAX)" is unnecessary.

Signed-off-by: Yong Wu <yong.wu@mediatek.com>
---
Rebase on v6.4-rc1.
---
 drivers/iommu/mtk_iommu.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/iommu/mtk_iommu.c b/drivers/iommu/mtk_iommu.c
index aecc7d154f28..67caa90b481b 100644
--- a/drivers/iommu/mtk_iommu.c
+++ b/drivers/iommu/mtk_iommu.c
@@ -838,9 +838,6 @@ static struct iommu_device *mtk_iommu_probe_device(struct device *dev)
 	 * All the ports in each a device should be in the same larbs.
 	 */
 	larbid = MTK_M4U_TO_LARB(fwspec->ids[0]);
-	if (larbid >= MTK_LARB_NR_MAX)
-		return ERR_PTR(-EINVAL);
-
 	for (i = 1; i < fwspec->num_ids; i++) {
 		larbidx = MTK_M4U_TO_LARB(fwspec->ids[i]);
 		if (larbid != larbidx) {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-07-05  8:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-04 11:56 [PATCH] iommu/mediatek: Remove a unnecessary checking for larbid Yong Wu
2023-07-04 12:19 ` AngeloGioacchino Del Regno
2023-07-05  6:49   ` Yong Wu (吴勇)
2023-07-05  8:26     ` Robin Murphy
2023-07-05  8:31       ` AngeloGioacchino Del Regno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox