mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
hwmon: (vexpress) Use of_property_present()
Use of_property_present() to test for property presence 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> Reviewed-by: Sudeep Holla <sudeep.holla@arm.com> Link: https://lore.kernel.org/r/20240731191312.1710417-13-robh@kernel.org Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
90368fa397
commit
85f72ffe0f
@ -72,7 +72,7 @@ static umode_t vexpress_hwmon_attr_is_visible(struct kobject *kobj,
|
||||
struct device_attribute, attr);
|
||||
|
||||
if (dev_attr->show == vexpress_hwmon_label_show &&
|
||||
!of_get_property(dev->of_node, "label", NULL))
|
||||
!of_property_present(dev->of_node, "label"))
|
||||
return 0;
|
||||
|
||||
return attr->mode;
|
||||
|
Loading…
Reference in New Issue
Block a user