summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>2023-05-23 15:42:11 +0300
committerMichal Simek <michal.simek@amd.com>2023-06-12 14:25:01 +0300
commitbc75a3465f7a7ac98cd6115a113e79c952e68000 (patch)
tree865160d14b99f6a664ccdfca5138dc7f8a6652f4
parentee3c02af77178133b1f4e0446bba58f6ce0888e0 (diff)
downloadu-boot-bc75a3465f7a7ac98cd6115a113e79c952e68000.tar.xz
firmware: zynqmp: Remove redundant child device bind
Remove the redundant child device bind from the driver bind function and rely on the post_bind of the class which calls the same function. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Link: https://lore.kernel.org/r/20230523124215.30915-2-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <michal.simek@amd.com>
-rw-r--r--drivers/firmware/firmware-zynqmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/firmware-zynqmp.c b/drivers/firmware/firmware-zynqmp.c
index 2b1ad5d2c3..ca3a0b55c9 100644
--- a/drivers/firmware/firmware-zynqmp.c
+++ b/drivers/firmware/firmware-zynqmp.c
@@ -395,7 +395,7 @@ static int zynqmp_firmware_bind(struct udevice *dev)
}
}
- return dm_scan_fdt_dev(dev);
+ return 0;
}
U_BOOT_DRIVER(zynqmp_firmware) = {