Message ID | 20231207125500.3322229-2-dmitry.baryshkov@linaro.org |
---|---|
State | Accepted |
Commit | 18368ee25d881981971fde430c7f33cbc27359d1 |
Headers | show |
Series | [1/3] iommu/msm-iommu: don't limit the driver too much | expand |
On Thu, Dec 07, 2023 at 01:06:09PM +0000, Robin Murphy wrote: > On 07/12/2023 12:54 pm, Dmitry Baryshkov wrote: > > In preparation of dropping most of ARCH_QCOM subtypes, stop limiting the > > driver just to those machines. Allow it to be built for any 32-bit > > Qualcomm platform (ARCH_QCOM). > > Acked-by: Robin Murphy <robin.murphy@arm.com> > > Unless Joerg disagrees, I think it should be fine if you want to take this > via the SoC tree. No objections: Acked-by: Joerg Roedel <jroedel@suse.de>
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig index 7673bb82945b..fd67f586f010 100644 --- a/drivers/iommu/Kconfig +++ b/drivers/iommu/Kconfig @@ -178,7 +178,7 @@ config FSL_PAMU config MSM_IOMMU bool "MSM IOMMU Support" depends on ARM - depends on ARCH_MSM8X60 || ARCH_MSM8960 || COMPILE_TEST + depends on ARCH_QCOM || COMPILE_TEST select IOMMU_API select IOMMU_IO_PGTABLE_ARMV7S help
In preparation of dropping most of ARCH_QCOM subtypes, stop limiting the driver just to those machines. Allow it to be built for any 32-bit Qualcomm platform (ARCH_QCOM). Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- drivers/iommu/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)