iommu/mediatek: Drop of_match_ptr to fix -Wunused-const-variable
authorKrzysztof Kozlowski <krzk@kernel.org>
Mon, 27 Jul 2020 18:18:42 +0000 (20:18 +0200)
committerJoerg Roedel <jroedel@suse.de>
Fri, 4 Sep 2020 08:40:49 +0000 (10:40 +0200)
commitf53dd97874e6d916ce7d3a487a1073ef5c10e153
treeb2c2cc7bb124b1fc40229e94eef7d32d7b3704db
parentf75aef392f869018f78cfedf3c320a6b3fcfda6b
iommu/mediatek: 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/mtk_iommu.c:833:34: warning: 'mtk_iommu_of_ids' defined but not used [-Wunused-const-variable=]
      833 | static const struct of_device_id mtk_iommu_of_ids[] = {

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200727181842.8441-1-krzk@kernel.org
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/mtk_iommu.c