aboutsummaryrefslogtreecommitdiff
path: root/include
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 /include
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 'include')
-rw-r--r--include/dm/device-internal.h8
-rw-r--r--include/power/regulator.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/include/dm/device-internal.h b/include/dm/device-internal.h
index c5d7ec0..59d3be0 100644
--- a/include/dm/device-internal.h
+++ b/include/dm/device-internal.h
@@ -16,7 +16,7 @@ struct device_node;
struct udevice;
/**
- * device_bind() - Create a device and bind it to a driver
+ * device_bind_offset() - Create a device and bind it to a driver
*
* Called to set up a new device attached to a driver. The device will either
* have platdata, or a device tree node which can be used to create the
@@ -36,9 +36,9 @@ struct udevice;
* @devp: if non-NULL, returns a pointer to the bound device
* @return 0 if OK, -ve on error
*/
-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);
int device_bind_ofnode(struct udevice *parent, const struct driver *drv,
const char *name, void *platdata, ofnode node,
diff --git a/include/power/regulator.h b/include/power/regulator.h
index 7f278e8..4d58a43 100644
--- a/include/power/regulator.h
+++ b/include/power/regulator.h
@@ -48,7 +48,7 @@
* If regulator-name property is not provided, node name will be chosen.
*
* Regulator bind:
- * For each regulator device, the device_bind() should be called with passed
+ * For each regulator device, the device_bind_offset() should be called with passed
* device tree offset. This is required for this uclass's '.post_bind' method,
* which does the scan on the device node, for the 'regulator-name' constraint.
* If the parent is not a PMIC device, and the child is not bind by function: