diff options
| author | Simon Glass <sjg@chromium.org> | 2020-11-28 17:50:00 -0700 |
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2020-12-13 07:58:17 -0700 |
| commit | e12052b3227bb0d77125970dc9f731e052b1c730 (patch) | |
| tree | 2374f34fa7540538316118f5403d1c4cf51ed579 /drivers/pinctrl/broadcom | |
| parent | 6ca5ff3f201ce52d4626fb39ad3658e262cac9ef (diff) | |
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/pinctrl/broadcom')
| -rw-r--r-- | drivers/pinctrl/broadcom/pinctrl-bcm283x.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/pinctrl/broadcom/pinctrl-bcm283x.c b/drivers/pinctrl/broadcom/pinctrl-bcm283x.c index 41da8141232..54928a607cb 100644 --- a/drivers/pinctrl/broadcom/pinctrl-bcm283x.c +++ b/drivers/pinctrl/broadcom/pinctrl-bcm283x.c @@ -125,8 +125,9 @@ int bcm283x_pinctl_probe(struct udevice *dev) struct udevice *pdev; /* Create GPIO device as well */ - ret = device_bind(dev, lists_driver_lookup_name("gpio_bcm2835"), - "gpio_bcm2835", NULL, dev_of_offset(dev), &pdev); + ret = device_bind_offset(dev, lists_driver_lookup_name("gpio_bcm2835"), + "gpio_bcm2835", NULL, dev_of_offset(dev), + &pdev); if (ret) { /* * While we really want the pinctrl driver to work to make |
