Commit 7c09abba authored by Rob Herring's avatar Rob Herring Committed by Miquel Raynal
Browse files

mtd: nand: qcom: 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: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20230310144715.1543926-1-robh@kernel.org
parent e8c047b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3054,7 +3054,7 @@ static int qcom_nand_host_parse_boot_partitions(struct qcom_nand_controller *nan
	struct device *dev = nandc->dev;
	int partitions_count, i, j, ret;

	if (!of_find_property(dn, "qcom,boot-partitions", NULL))
	if (!of_property_present(dn, "qcom,boot-partitions"))
		return 0;

	partitions_count = of_property_count_u32_elems(dn, "qcom,boot-partitions");