dm: Remove uses of device_bind_offset()
This function is not needed since the standard device_bind() can be used instead. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -37,8 +37,8 @@ struct udevice;
|
||||
* @return 0 if OK, -ve on error
|
||||
*/
|
||||
int device_bind_offset(struct udevice *parent, const struct driver *drv,
|
||||
const char *name, void *platdata, int of_offset,
|
||||
struct udevice **devp);
|
||||
const char *name, void *platdata, int of_offset,
|
||||
struct udevice **devp);
|
||||
|
||||
int device_bind(struct udevice *parent, const struct driver *drv,
|
||||
const char *name, void *platdata, ofnode node,
|
||||
|
||||
@@ -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_offset() should be called with passed
|
||||
* For each regulator device, the device_bind() 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:
|
||||
|
||||
Reference in New Issue
Block a user