]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dm: core: Fix uninitialized return value from dm_scan_fdt_node
authorSean Anderson <sean.anderson@seco.com>
Thu, 8 Apr 2021 21:15:00 +0000 (17:15 -0400)
committerSimon Glass <sjg@chromium.org>
Thu, 29 Apr 2021 10:23:39 +0000 (03:23 -0700)
If there are no nodes or if all nodes are disabled, this function would
return err without setting it first. Fix this by initializing err to
zero.

Fixes: 94f7afdf7e ("dm: core: Ignore disabled devices when binding")
Signed-off-by: Sean Anderson <sean.anderson@seco.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/core/root.c

index d9a19c5e6b6caa040ee0f1c6ce3203a01cdcb674..f852d867dbe9c920eb7a9c4c1d013a923ca48485 100644 (file)
@@ -265,7 +265,7 @@ int dm_scan_plat(bool pre_reloc_only)
 static int dm_scan_fdt_node(struct udevice *parent, ofnode parent_node,
                            bool pre_reloc_only)
 {
-       int ret = 0, err;
+       int ret = 0, err = 0;
        ofnode node;
 
        if (!ofnode_valid(parent_node))