aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpio/tegra_gpio.c
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 /drivers/gpio/tegra_gpio.c
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 'drivers/gpio/tegra_gpio.c')
-rw-r--r--drivers/gpio/tegra_gpio.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpio/tegra_gpio.c b/drivers/gpio/tegra_gpio.c
index 912577a..0056171 100644
--- a/drivers/gpio/tegra_gpio.c
+++ b/drivers/gpio/tegra_gpio.c
@@ -360,8 +360,9 @@ static int gpio_tegra_bind(struct udevice *parent)
plat->base_gpio = TEGRA_GPIOS_PER_PORT * base_port;
plat->port_name = gpio_port_name(base_port);
- ret = device_bind(parent, parent->driver,
- plat->port_name, plat, -1, &dev);
+ ret = device_bind_offset(parent, parent->driver,
+ plat->port_name, plat, -1,
+ &dev);
if (ret)
return ret;
dev_set_of_offset(dev, dev_of_offset(parent));