mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
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
This commit is contained in:
parent
336c218dd7
commit
ea265e483e
1 changed files with 2 additions and 2 deletions
|
@ -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"))
|
||||
|
|
Loading…
Reference in a new issue