]> Git Repo - linux.git/commitdiff
iommu/exynos: use list_del_init instead of list_del/INIT_LIST_HEAD
authorWei Yongjun <[email protected]>
Thu, 6 Sep 2012 04:34:09 +0000 (12:34 +0800)
committerJoerg Roedel <[email protected]>
Tue, 18 Sep 2012 10:44:02 +0000 (12:44 +0200)
Using list_del_init() instead of list_del() + INIT_LIST_HEAD().

spatch with a semantic match is used to found this problem.
(http://coccinelle.lip6.fr/)

Signed-off-by: Wei Yongjun <[email protected]>
Signed-off-by: Joerg Roedel <[email protected]>
drivers/iommu/exynos-iommu.c

index 80bad32aa46394443ad5a0aaa4a241c4e0e4b2c0..7fe44f83cc371043788885d3fb3bfdc7f6b091ad 100644 (file)
@@ -840,8 +840,7 @@ static void exynos_iommu_detach_device(struct iommu_domain *domain,
        if (__exynos_sysmmu_disable(data)) {
                dev_dbg(dev, "%s: Detached IOMMU with pgtable %#lx\n",
                                        __func__, __pa(priv->pgtable));
-               list_del(&data->node);
-               INIT_LIST_HEAD(&data->node);
+               list_del_init(&data->node);
 
        } else {
                dev_dbg(dev, "%s: Detaching IOMMU with pgtable %#lx delayed",
This page took 0.054789 seconds and 4 git commands to generate.