aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpio/s5p_gpio.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-08-11 08:33:29 -0600
committerSimon Glass <sjg@chromium.org>2015-08-31 07:57:26 -0600
commit4e9838c102e8575fbff3944e1596a53ec579844a (patch)
tree3076104fa3b0570bc88e695ef274624536b22762 /drivers/gpio/s5p_gpio.c
parent71f1e3f19d26c7956de5c37035478fcaa9e979e7 (diff)
downloadu-boot-4e9838c102e8575fbff3944e1596a53ec579844a.zip
u-boot-4e9838c102e8575fbff3944e1596a53ec579844a.tar.gz
u-boot-4e9838c102e8575fbff3944e1596a53ec579844a.tar.bz2
dm: Use dev_get_addr() where possible
This is a convenient way for a driver to get the hardware address of a device, when regmap or syscon are not being used. Change existing callers to use it as an example to others. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com> Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'drivers/gpio/s5p_gpio.c')
-rw-r--r--drivers/gpio/s5p_gpio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpio/s5p_gpio.c b/drivers/gpio/s5p_gpio.c
index 49b1054..17fcfbf 100644
--- a/drivers/gpio/s5p_gpio.c
+++ b/drivers/gpio/s5p_gpio.c
@@ -327,8 +327,7 @@ static int gpio_exynos_bind(struct udevice *parent)
if (plat)
return 0;
- base = (struct s5p_gpio_bank *)fdtdec_get_addr(gd->fdt_blob,
- parent->of_offset, "reg");
+ base = (struct s5p_gpio_bank *)dev_get_addr(parent);
for (node = fdt_first_subnode(blob, parent->of_offset), bank = base;
node > 0;
node = fdt_next_subnode(blob, node), bank++) {