public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel•org>
To: Joerg Roedel <joro@8bytes•org>, Will Deacon <will@kernel•org>
Cc: devicetree@vger•kernel.org, linux-arm-kernel@lists•infradead.org,
	Frank Rowand <frowand.list@gmail•com>,
	iommu@lists•linux-foundation.org,
	Robin Murphy <robin.murphy@arm•com>,
	Rob Clark <robdclark@gmail•com>,
	Marek Szyprowski <m.szyprowski@samsung•com>,
	Krzysztof Kozlowski <krzysztof.kozlowski@canonical•com>,
	Bjorn Andersson <bjorn.andersson@linaro•org>,
	Yong Wu <yong.wu@mediatek•com>,
	Matthias Brugger <matthias.bgg@gmail•com>,
	Heiko Stuebner <heiko@sntech•de>,
	Jean-Philippe Brucker <jean-philippe@linaro•org>
Subject: [PATCH 2/2] iommu: Drop unnecessary of_iommu.h includes
Date: Thu, 27 May 2021 14:37:10 -0500	[thread overview]
Message-ID: <20210527193710.1281746-2-robh@kernel.org> (raw)
In-Reply-To: <20210527193710.1281746-1-robh@kernel.org>

The only place of_iommu.h is needed is in drivers/of/device.c. Remove it
from everywhere else.

Cc: Will Deacon <will@kernel•org>
Cc: Robin Murphy <robin.murphy@arm•com>
Cc: Joerg Roedel <joro@8bytes•org>
Cc: Rob Clark <robdclark@gmail•com>
Cc: Marek Szyprowski <m.szyprowski@samsung•com>
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@canonical•com>
Cc: Bjorn Andersson <bjorn.andersson@linaro•org>
Cc: Yong Wu <yong.wu@mediatek•com>
Cc: Matthias Brugger <matthias.bgg@gmail•com>
Cc: Heiko Stuebner <heiko@sntech•de>
Cc: Jean-Philippe Brucker <jean-philippe@linaro•org>
Cc: Frank Rowand <frowand.list@gmail•com>
Cc: linux-arm-kernel@lists•infradead.org
Cc: iommu@lists•linux-foundation.org
Signed-off-by: Rob Herring <robh@kernel•org>
---
 drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 1 -
 drivers/iommu/arm/arm-smmu/arm-smmu.c       | 1 -
 drivers/iommu/arm/arm-smmu/qcom_iommu.c     | 1 -
 drivers/iommu/exynos-iommu.c                | 1 -
 drivers/iommu/ipmmu-vmsa.c                  | 1 -
 drivers/iommu/msm_iommu.c                   | 1 -
 drivers/iommu/mtk_iommu.c                   | 1 -
 drivers/iommu/mtk_iommu_v1.c                | 1 -
 drivers/iommu/omap-iommu.c                  | 1 -
 drivers/iommu/rockchip-iommu.c              | 1 -
 drivers/iommu/virtio-iommu.c                | 1 -
 drivers/of/platform.c                       | 1 -
 12 files changed, 12 deletions(-)

diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
index 54b2f27b81d4..2ddc3cd5a7d1 100644
--- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
+++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
@@ -23,7 +23,6 @@
 #include <linux/msi.h>
 #include <linux/of.h>
 #include <linux/of_address.h>
-#include <linux/of_iommu.h>
 #include <linux/of_platform.h>
 #include <linux/pci.h>
 #include <linux/pci-ats.h>
diff --git a/drivers/iommu/arm/arm-smmu/arm-smmu.c b/drivers/iommu/arm/arm-smmu/arm-smmu.c
index 6f72c4d208ca..dba15f312cbd 100644
--- a/drivers/iommu/arm/arm-smmu/arm-smmu.c
+++ b/drivers/iommu/arm/arm-smmu/arm-smmu.c
@@ -31,7 +31,6 @@
 #include <linux/of.h>
 #include <linux/of_address.h>
 #include <linux/of_device.h>
-#include <linux/of_iommu.h>
 #include <linux/pci.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
diff --git a/drivers/iommu/arm/arm-smmu/qcom_iommu.c b/drivers/iommu/arm/arm-smmu/qcom_iommu.c
index 4294abe389b2..021cf8f65ffc 100644
--- a/drivers/iommu/arm/arm-smmu/qcom_iommu.c
+++ b/drivers/iommu/arm/arm-smmu/qcom_iommu.c
@@ -25,7 +25,6 @@
 #include <linux/of.h>
 #include <linux/of_address.h>
 #include <linux/of_device.h>
-#include <linux/of_iommu.h>
 #include <linux/platform_device.h>
 #include <linux/pm.h>
 #include <linux/pm_runtime.h>
diff --git a/drivers/iommu/exynos-iommu.c b/drivers/iommu/exynos-iommu.c
index 7623d8c371f5..d0fbf1d10e18 100644
--- a/drivers/iommu/exynos-iommu.c
+++ b/drivers/iommu/exynos-iommu.c
@@ -17,7 +17,6 @@
 #include <linux/kmemleak.h>
 #include <linux/list.h>
 #include <linux/of.h>
-#include <linux/of_iommu.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c
index aaa6a4d59057..51ea6f00db2f 100644
--- a/drivers/iommu/ipmmu-vmsa.c
+++ b/drivers/iommu/ipmmu-vmsa.c
@@ -19,7 +19,6 @@
 #include <linux/iommu.h>
 #include <linux/of.h>
 #include <linux/of_device.h>
-#include <linux/of_iommu.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
 #include <linux/sizes.h>
diff --git a/drivers/iommu/msm_iommu.c b/drivers/iommu/msm_iommu.c
index 7880f307cb2d..3a38352b603f 100644
--- a/drivers/iommu/msm_iommu.c
+++ b/drivers/iommu/msm_iommu.c
@@ -18,7 +18,6 @@
 #include <linux/iommu.h>
 #include <linux/clk.h>
 #include <linux/err.h>
-#include <linux/of_iommu.h>
 
 #include <asm/cacheflush.h>
 #include <linux/sizes.h>
diff --git a/drivers/iommu/mtk_iommu.c b/drivers/iommu/mtk_iommu.c
index e06b8a0e2b56..6f7c69688ce2 100644
--- a/drivers/iommu/mtk_iommu.c
+++ b/drivers/iommu/mtk_iommu.c
@@ -19,7 +19,6 @@
 #include <linux/mfd/syscon.h>
 #include <linux/module.h>
 #include <linux/of_address.h>
-#include <linux/of_iommu.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
diff --git a/drivers/iommu/mtk_iommu_v1.c b/drivers/iommu/mtk_iommu_v1.c
index 5915d7b38211..778e66f5f1aa 100644
--- a/drivers/iommu/mtk_iommu_v1.c
+++ b/drivers/iommu/mtk_iommu_v1.c
@@ -22,7 +22,6 @@
 #include <linux/list.h>
 #include <linux/module.h>
 #include <linux/of_address.h>
-#include <linux/of_iommu.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c
index 26e517eb0dd3..91749654fd49 100644
--- a/drivers/iommu/omap-iommu.c
+++ b/drivers/iommu/omap-iommu.c
@@ -22,7 +22,6 @@
 #include <linux/io.h>
 #include <linux/pm_runtime.h>
 #include <linux/of.h>
-#include <linux/of_iommu.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
 #include <linux/regmap.h>
diff --git a/drivers/iommu/rockchip-iommu.c b/drivers/iommu/rockchip-iommu.c
index 7a2932772fdf..bb50e015b1d5 100644
--- a/drivers/iommu/rockchip-iommu.c
+++ b/drivers/iommu/rockchip-iommu.c
@@ -21,7 +21,6 @@
 #include <linux/mm.h>
 #include <linux/init.h>
 #include <linux/of.h>
-#include <linux/of_iommu.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
diff --git a/drivers/iommu/virtio-iommu.c b/drivers/iommu/virtio-iommu.c
index 7c02481a81b4..d9f46f2c3058 100644
--- a/drivers/iommu/virtio-iommu.c
+++ b/drivers/iommu/virtio-iommu.c
@@ -14,7 +14,6 @@
 #include <linux/interval_tree.h>
 #include <linux/iommu.h>
 #include <linux/module.h>
-#include <linux/of_iommu.h>
 #include <linux/of_platform.h>
 #include <linux/pci.h>
 #include <linux/platform_device.h>
diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index 25d448f5af91..74afbb7a4f5e 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -17,7 +17,6 @@
 #include <linux/slab.h>
 #include <linux/of_address.h>
 #include <linux/of_device.h>
-#include <linux/of_iommu.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
 #include <linux/platform_device.h>
-- 
2.27.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists•infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-05-27 19:39 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-27 19:37 [PATCH 1/2] iommu: Remove unused of_get_dma_window() Rob Herring
2021-05-27 19:37 ` Rob Herring [this message]
2021-05-28 15:54   ` [PATCH 2/2] iommu: Drop unnecessary of_iommu.h includes Heiko Stübner
2021-06-01  8:48   ` Robin Murphy
2021-06-04 15:45 ` [PATCH 1/2] iommu: Remove unused of_get_dma_window() Joerg Roedel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210527193710.1281746-2-robh@kernel.org \
    --to=robh@kernel$(echo .)org \
    --cc=bjorn.andersson@linaro$(echo .)org \
    --cc=devicetree@vger$(echo .)kernel.org \
    --cc=frowand.list@gmail$(echo .)com \
    --cc=heiko@sntech$(echo .)de \
    --cc=iommu@lists$(echo .)linux-foundation.org \
    --cc=jean-philippe@linaro$(echo .)org \
    --cc=joro@8bytes$(echo .)org \
    --cc=krzysztof.kozlowski@canonical$(echo .)com \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=m.szyprowski@samsung$(echo .)com \
    --cc=matthias.bgg@gmail$(echo .)com \
    --cc=robdclark@gmail$(echo .)com \
    --cc=robin.murphy@arm$(echo .)com \
    --cc=will@kernel$(echo .)org \
    --cc=yong.wu@mediatek$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox