]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit16efcdf3c49dd85c0b416e05ddc44553b4e07c4a
tree48e6134650b1028fc0d14d45bdb530ae52e5ddc2
parentbeea5f8bd9170d3d0e6476d33bde88d795ce40b0
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