iommu/mediatek: Fix handling of of_count_phandle_with_args result
The function can return negative value so it should be assigned to signed variable. The patch changes also type of related i variable to make code more compact and coherent. The problem has been detected using patch scripts/coccinelle/tests/unsigned_lesser_than_zero.cocci. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
fd99f796a2
commit
0b6c0ad3cf
|
@ -578,8 +578,7 @@ static int mtk_iommu_probe(struct platform_device *pdev)
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
struct component_match *match = NULL;
|
struct component_match *match = NULL;
|
||||||
void *protect;
|
void *protect;
|
||||||
unsigned int i, larb_nr;
|
int i, larb_nr, ret;
|
||||||
int ret;
|
|
||||||
|
|
||||||
data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
|
data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
|
||||||
if (!data)
|
if (!data)
|
||||||
|
|
Loading…
Reference in New Issue