diff options
author | Rob Herring <robh@kernel.org> | 2023-03-10 15:47:09 +0100 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2023-03-22 14:54:42 +0100 |
commit | a6c9e3874e5759af089c07ab80c87105babc9727 (patch) | |
tree | e3f06b3065e22194d57d08da82f544ef7098bec8 /drivers/iommu/ipmmu-vmsa.c | |
parent | iommu: Spelling s/cpmxchg64/cmpxchg64/ (diff) | |
download | linux-a6c9e3874e5759af089c07ab80c87105babc9727.tar.xz linux-a6c9e3874e5759af089c07ab80c87105babc9727.zip |
iommu: Use of_property_present() for testing DT property presence
It is preferred to use typed property access functions (i.e.
of_property_read_<type> functions) rather than low-level
of_get_property/of_find_property functions for reading properties. As
part of this, convert of_get_property/of_find_property calls to the
recently added of_property_present() helper when we just want to test
for presence of a property and nothing more.
Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Link: https://lore.kernel.org/r/20230310144709.1542910-1-robh@kernel.org
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to '')
-rw-r--r-- | drivers/iommu/ipmmu-vmsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c index bdf1a4e5eae0..f4470303d906 100644 --- a/drivers/iommu/ipmmu-vmsa.c +++ b/drivers/iommu/ipmmu-vmsa.c @@ -1014,7 +1014,7 @@ static int ipmmu_probe(struct platform_device *pdev) * the lack of has_cache_leaf_nodes flag or renesas,ipmmu-main property. */ if (!mmu->features->has_cache_leaf_nodes || - !of_find_property(pdev->dev.of_node, "renesas,ipmmu-main", NULL)) + !of_property_present(pdev->dev.of_node, "renesas,ipmmu-main")) mmu->root = mmu; else mmu->root = ipmmu_find_root(); |