diff options
Diffstat (limited to 'drivers/core/device.c')
| -rw-r--r-- | drivers/core/device.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/core/device.c b/drivers/core/device.c index 4b3dcb3b379..081dd1f7780 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); | 
