iommu/qcom: Drop of_match_ptr to fix -Wunused-const-variable
authorKrzysztof Kozlowski <krzk@kernel.org>
Tue, 28 Jul 2020 17:08:59 +0000 (19:08 +0200)
committerJoerg Roedel <jroedel@suse.de>
Fri, 4 Sep 2020 08:57:13 +0000 (10:57 +0200)
commit7aaf0b0e8e9add1688b13588351bb7e8acfeeab4
tree48e6134650b1028fc0d14d45bdb530ae52e5ddc2
parentf75aef392f869018f78cfedf3c320a6b3fcfda6b
iommu/qcom: Drop of_match_ptr to fix -Wunused-const-variable

The of_device_id is included unconditionally by of.h header and used
in the driver as well.  Remove of_match_ptr to fix W=1 compile test
warning with !CONFIG_OF:

    drivers/iommu/qcom_iommu.c:910:34: warning: 'qcom_iommu_of_match' defined but not used [-Wunused-const-variable=]
      910 | static const struct of_device_id qcom_iommu_of_match[] = {

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200728170859.28143-3-krzk@kernel.org
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/arm/arm-smmu/qcom_iommu.c