aboutsummaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-28 17:50:00 -0700
committerSimon Glass <sjg@chromium.org>2020-12-13 07:58:17 -0700
commite12052b3227bb0d77125970dc9f731e052b1c730 (patch)
tree2374f34fa7540538316118f5403d1c4cf51ed579 /drivers/core
parent6ca5ff3f201ce52d4626fb39ad3658e262cac9ef (diff)
downloadu-boot-e12052b3227bb0d77125970dc9f731e052b1c730.zip
u-boot-e12052b3227bb0d77125970dc9f731e052b1c730.tar.gz
u-boot-e12052b3227bb0d77125970dc9f731e052b1c730.tar.bz2
dm: core: Rename device_bind() to device_bind_offset()
This function is not necessary anymore, since device_bind_ofnode() does the same thing and works with both flattree and livetree. Rename it to indicate that it is special. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c
index 4b3dcb3..081dd1f 100644
--- a/drivers/core/device.c
+++ b/drivers/core/device.c
@@ -232,9 +232,9 @@ int device_bind_with_driver_data(struct udevice *parent,
0, devp);
}
-int device_bind(struct udevice *parent, const struct driver *drv,
- const char *name, void *platdata, int of_offset,
- struct udevice **devp)
+int device_bind_offset(struct udevice *parent, const struct driver *drv,
+ const char *name, void *platdata, int of_offset,
+ struct udevice **devp)
{
return device_bind_common(parent, drv, name, platdata, 0,
offset_to_ofnode(of_offset), 0, devp);