aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Léger <[email protected]>2021-12-20 22:05:33 +0100
committerRafael J. Wysocki <[email protected]>2021-12-22 18:26:18 +0100
commitc5fc5ba8b6b7bebc05e45036a33405b4c5036c2f (patch)
tree6ce8b5771ab5fb38382f573ebd4a0cb70c0dd3c8
parentc49eea6ffec626c059ace085fce1bf501b05dbc7 (diff)
software node: fix wrong node passed to find nargs_prop
nargs_prop refers to a property located in the reference that is found within the nargs property. Use the correct reference node in call to property_entry_read_int_array() to retrieve the correct nargs value. Fixes: b06184acf751 ("software node: Add software_node_get_reference_args()") Signed-off-by: Clément Léger <[email protected]> Reviewed-by: Sakari Ailus <[email protected]> Reviewed-by: Daniel Scally <[email protected]> Acked-by: Heikki Krogerus <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r--drivers/base/swnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/swnode.c b/drivers/base/swnode.c
index 4debcea4fb12..0a482212c7e8 100644
--- a/drivers/base/swnode.c
+++ b/drivers/base/swnode.c
@@ -529,7 +529,7 @@ software_node_get_reference_args(const struct fwnode_handle *fwnode,
return -ENOENT;
if (nargs_prop) {
- error = property_entry_read_int_array(swnode->node->properties,
+ error = property_entry_read_int_array(ref->node->properties,
nargs_prop, sizeof(u32),
&nargs_prop_val, 1);
if (error)