summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-29 03:50:06 +0300
committerSimon Glass <sjg@chromium.org>2020-12-13 17:58:18 +0300
commite80be7493412e0facbbf81f709dc44740e975dea (patch)
tree9754c334d27654e313d7ea934740e838a2f7e53f /drivers
parent0d56fba3c4156ba305053b5f8f317e2974f50eeb (diff)
downloadu-boot-e80be7493412e0facbbf81f709dc44740e975dea.tar.xz
dm: core: Drop device_bind_offset()
This function is not needed since the standard device_bind() can be used instead. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/core/device.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c
index c8a219d77b..79afaf0629 100644
--- a/drivers/core/device.c
+++ b/drivers/core/device.c
@@ -232,14 +232,6 @@ int device_bind_with_driver_data(struct udevice *parent,
0, 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);
-}
-
int device_bind(struct udevice *parent, const struct driver *drv,
const char *name, void *platdata, ofnode node,
struct udevice **devp)