[PATCH 3/5] of: property: add support for fwnode_device_is_reserved()

From: Zev Weiss
Date: Thu Oct 21 2021 - 22:00:53 EST


This is just a simple pass-through to of_device_is_reserved().

Signed-off-by: Zev Weiss <zev@xxxxxxxxxxxxxxxxx>
---
drivers/of/property.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/drivers/of/property.c b/drivers/of/property.c
index a3483484a5a2..67a8cb7ac462 100644
--- a/drivers/of/property.c
+++ b/drivers/of/property.c
@@ -872,6 +872,11 @@ static bool of_fwnode_device_is_available(const struct fwnode_handle *fwnode)
return of_device_is_available(to_of_node(fwnode));
}

+static bool of_fwnode_device_is_reserved(const struct fwnode_handle *fwnode)
+{
+ return of_device_is_reserved(to_of_node(fwnode));
+}
+
static bool of_fwnode_property_present(const struct fwnode_handle *fwnode,
const char *propname)
{
@@ -1458,6 +1463,7 @@ const struct fwnode_operations of_fwnode_ops = {
.get = of_fwnode_get,
.put = of_fwnode_put,
.device_is_available = of_fwnode_device_is_available,
+ .device_is_reserved = of_fwnode_device_is_reserved,
.device_get_match_data = of_fwnode_device_get_match_data,
.property_present = of_fwnode_property_present,
.property_read_int_array = of_fwnode_property_read_int_array,
--
2.33.1