* [PATCH] iommu/mtk: fix handling of of_count_phandle_with_args result @ 2016-03-01 9:36 Andrzej Hajda [not found] ` <1456824983-13550-1-git-send-email-a.hajda-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Andrzej Hajda @ 2016-03-01 9:36 UTC (permalink / raw) To: Joerg Roedel, Matthias Brugger Cc: Bartlomiej Zolnierkiewicz, Andrzej Hajda, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Marek Szyprowski 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-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> --- drivers/iommu/mtk_iommu.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/iommu/mtk_iommu.c b/drivers/iommu/mtk_iommu.c index 721ffdb..de9241b 100644 --- a/drivers/iommu/mtk_iommu.c +++ b/drivers/iommu/mtk_iommu.c @@ -578,8 +578,7 @@ static int mtk_iommu_probe(struct platform_device *pdev) struct resource *res; struct component_match *match = NULL; void *protect; - unsigned int i, larb_nr; - int ret; + int i, larb_nr, ret; data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL); if (!data) -- 1.9.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <1456824983-13550-1-git-send-email-a.hajda-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH] iommu/mtk: fix handling of of_count_phandle_with_args result [not found] ` <1456824983-13550-1-git-send-email-a.hajda-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> @ 2016-03-01 11:34 ` Joerg Roedel [not found] ` <20160301113447.GO22747-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Joerg Roedel @ 2016-03-01 11:34 UTC (permalink / raw) To: Andrzej Hajda Cc: Bartlomiej Zolnierkiewicz, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Matthias Brugger, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Tue, Mar 01, 2016 at 10:36:23AM +0100, Andrzej Hajda wrote: > 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-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> > --- > drivers/iommu/mtk_iommu.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) Applied, thanks. ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20160301113447.GO22747-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>]
* Re: [PATCH] iommu/mtk: fix handling of of_count_phandle_with_args result [not found] ` <20160301113447.GO22747-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> @ 2016-03-01 18:19 ` Yong Wu 0 siblings, 0 replies; 3+ messages in thread From: Yong Wu @ 2016-03-01 18:19 UTC (permalink / raw) To: Joerg Roedel, Andrzej Hajda Cc: Matthias Brugger, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Bartlomiej Zolnierkiewicz On Tue, 2016-03-01 at 12:34 +0100, Joerg Roedel wrote: > On Tue, Mar 01, 2016 at 10:36:23AM +0100, Andrzej Hajda wrote: > > 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-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> > > --- > > drivers/iommu/mtk_iommu.c | 3 +-- > > 1 file changed, 1 insertion(+), 2 deletions(-) > > Applied, thanks. Thanks. nit: It would be better to use iommu/mediatek. > > _______________________________________________ > iommu mailing list > iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org > https://lists.linuxfoundation.org/mailman/listinfo/iommu ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-03-01 18:19 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-03-01 9:36 [PATCH] iommu/mtk: fix handling of of_count_phandle_with_args result Andrzej Hajda [not found] ` <1456824983-13550-1-git-send-email-a.hajda-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> 2016-03-01 11:34 ` Joerg Roedel [not found] ` <20160301113447.GO22747-zLv9SwRftAIdnm+yROfE0A@public.gmane.org> 2016-03-01 18:19 ` Yong Wu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).