Adjust the order to make it clear that *devp is set to NULL by default.

Signed-off-by: Simon Glass <s...@chromium.org>
---

Changes in v3: None
Changes in v2: None

 drivers/core/lists.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/core/lists.c b/drivers/core/lists.c
index 23b6ba78d3..72c55e205f 100644
--- a/drivers/core/lists.c
+++ b/drivers/core/lists.c
@@ -140,10 +140,10 @@ int lists_bind_fdt(struct udevice *parent, const void 
*blob, int offset,
        int result = 0;
        int ret = 0;
 
-       name = fdt_get_name(blob, offset, NULL);
-       dm_dbg("bind node %s\n", name);
        if (devp)
                *devp = NULL;
+       name = fdt_get_name(blob, offset, NULL);
+       dm_dbg("bind node %s\n", name);
 
        compat_list = fdt_getprop(blob, offset, "compatible", &compat_length);
        if (!compat_list) {
-- 
2.13.0.303.g4ebf302169-goog

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot

Reply via email to