aboutsummaryrefslogtreecommitdiff
path: root/drivers/core/ofnode.c
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2020-09-10 18:26:17 +0200
committerSimon Glass <sjg@chromium.org>2020-09-22 12:54:13 -0600
commit01d89e3d12e07a1a1ee0f8528706441a84eee328 (patch)
treef690e7daeb0eae0db58b96a8261cb0cec1b4fe3b /drivers/core/ofnode.c
parent3e15c315f97401f394ae83ed17fbef72b765222a (diff)
downloadu-boot-01d89e3d12e07a1a1ee0f8528706441a84eee328.zip
u-boot-01d89e3d12e07a1a1ee0f8528706441a84eee328.tar.gz
u-boot-01d89e3d12e07a1a1ee0f8528706441a84eee328.tar.bz2
dm: add cells_count parameter in live DT APIs of_parse_phandle_with_args
In the live tree API ofnode_parse_phandle_with_args, the cell_count argument must be used when cells_name is NULL. But this argument is not provided to the live DT function of_parse_phandle_with_args even it is provided to fdtdec_parse_phandle_with_args. This patch adds support of the cells_count parameter in dev_ and of_node API to allow migration and support of live DT: - of_parse_phandle_with_args Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core/ofnode.c')
-rw-r--r--drivers/core/ofnode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c
index d02d8d3..79fcdf5 100644
--- a/drivers/core/ofnode.c
+++ b/drivers/core/ofnode.c
@@ -409,7 +409,8 @@ int ofnode_parse_phandle_with_args(ofnode node, const char *list_name,
int ret;
ret = of_parse_phandle_with_args(ofnode_to_np(node),
- list_name, cells_name, index,
+ list_name, cells_name,
+ cell_count, index,
&args);
if (ret)
return ret;