Searched refs:child_post_bind (Results 1 – 16 of 16) sorted by relevance
/openbmc/u-boot/drivers/core/ |
H A D | root.c | 93 if (entry->child_post_bind) in fix_drivers() 94 entry->child_post_bind += gd->reloc_off; in fix_drivers() 123 if (entry->child_post_bind) in fix_uclass() 124 entry->child_post_bind += gd->reloc_off; in fix_uclass()
|
H A D | device.c | 156 if (parent && parent->driver->child_post_bind) { in device_bind_common() 157 ret = parent->driver->child_post_bind(dev); in device_bind_common()
|
H A D | uclass.c | 638 if (uc_drv->child_post_bind) { in uclass_bind_device() 639 ret = uc_drv->child_post_bind(dev); in uclass_bind_device()
|
/openbmc/u-boot/include/dm/ |
H A D | uclass.h | 96 int (*child_post_bind)(struct udevice *dev); member
|
H A D | device.h | 246 int (*child_post_bind)(struct udevice *dev); member
|
/openbmc/u-boot/drivers/pci/ |
H A D | pci_sandbox.c | 133 .child_post_bind = dm_scan_fdt_dev,
|
H A D | pci-uclass.c | 1453 .child_post_bind = pci_uclass_child_post_bind,
|
/openbmc/u-boot/drivers/i2c/muxes/ |
H A D | i2c-mux-uclass.c | 223 .child_post_bind = i2c_mux_child_post_bind,
|
/openbmc/u-boot/drivers/usb/emul/ |
H A D | sandbox_hub.c | 333 .child_post_bind = sandbox_child_post_bind,
|
/openbmc/u-boot/drivers/virtio/ |
H A D | virtio-uclass.c | 365 .child_post_bind = virtio_uclass_child_post_bind,
|
/openbmc/u-boot/drivers/spi/ |
H A D | spi-uclass.c | 478 .child_post_bind = spi_child_post_bind,
|
/openbmc/u-boot/test/dm/ |
H A D | bus.c | 99 .child_post_bind = testbus_child_post_bind,
|
/openbmc/u-boot/drivers/usb/host/ |
H A D | usb-uclass.c | 797 .child_post_bind = usb_child_post_bind,
|
/openbmc/u-boot/drivers/i2c/ |
H A D | i2c-uclass.c | 700 .child_post_bind = i2c_child_post_bind,
|
/openbmc/u-boot/doc/ |
H A D | README.virtio | 193 The child_post_bind(), child_pre_probe() and child_post_probe() methods of the
|
/openbmc/u-boot/doc/driver-model/ |
H A D | README.txt | 571 Similarly the bus uclass can define the child_post_bind() method to obtain
|