mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
libfdt: Sync fdt_for_each_subnode() with upstream
The signature for this macro has changed. Bring in the upstream version and adjust U-Boot's usages to suit. Signed-off-by: Simon Glass <sjg@chromium.org> Update to drivers/power/pmic/palmas.c: Signed-off-by: Keerthy <j-keerthy@ti.com> Change-Id: I6cc9021339bfe686f9df21d61a1095ca2b3776e8
This commit is contained in:
@@ -836,7 +836,7 @@ int fdtdec_get_child_count(const void *blob, int node)
|
||||
int subnode;
|
||||
int num = 0;
|
||||
|
||||
fdt_for_each_subnode(blob, subnode, node)
|
||||
fdt_for_each_subnode(subnode, blob, node)
|
||||
num++;
|
||||
|
||||
return num;
|
||||
|
Reference in New Issue
Block a user