summaryrefslogtreecommitdiff
path: root/drivers/mtd
diff options
context:
space:
mode:
authorRob Herring (Arm) <robh@kernel.org>2024-07-31 13:13:00 -0600
committerMiquel Raynal <miquel.raynal@bootlin.com>2024-08-23 19:25:48 +0200
commitea265e483eb3d9750c7cfc642dedd5be31dc22c2 (patch)
tree1f7496977c736fb4a5d225a9cca66ce6bbd753e4 /drivers/mtd
parent336c218dd7f0588ed8a7345f367975a00a4f003f (diff)
downloadlwn-ea265e483eb3d9750c7cfc642dedd5be31dc22c2.tar.gz
lwn-ea265e483eb3d9750c7cfc642dedd5be31dc22c2.zip
mtd: Use of_property_read_bool()
Use of_property_read_bool() to read boolean properties rather than of_get_property(). This is part of a larger effort to remove callers of of_get_property() and similar functions. of_get_property() leaks the DT property data pointer which is a problem for dynamically allocated nodes which may be freed. Signed-off-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20240731191312.1710417-22-robh@kernel.org
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/parsers/ofpart_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/parsers/ofpart_core.c b/drivers/mtd/parsers/ofpart_core.c
index e7b8e9d0a910..abfa68798918 100644
--- a/drivers/mtd/parsers/ofpart_core.c
+++ b/drivers/mtd/parsers/ofpart_core.c
@@ -157,10 +157,10 @@ static int parse_fixed_partitions(struct mtd_info *master,
partname = of_get_property(pp, "name", &len);
parts[i].name = partname;
- if (of_get_property(pp, "read-only", &len))
+ if (of_property_read_bool(pp, "read-only"))
parts[i].mask_flags |= MTD_WRITEABLE;
- if (of_get_property(pp, "lock", &len))
+ if (of_property_read_bool(pp, "lock"))
parts[i].mask_flags |= MTD_POWERUP_LOCK;
if (of_property_read_bool(pp, "slc-mode"))