[PATCH v5 14/33] gpio: sifive: Use generic reg read function
Sean Anderson
seanga2 at gmail.com
Fri Feb 28 22:05:32 CET 2020
Using an fdt-specific function causes problems with a live tree.
Signed-off-by: Sean Anderson <seanga2 at gmail.com>
---
Changes in v5:
- New
drivers/gpio/sifive-gpio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpio/sifive-gpio.c b/drivers/gpio/sifive-gpio.c
index 76d5a1d34e..111f759d2e 100644
--- a/drivers/gpio/sifive-gpio.c
+++ b/drivers/gpio/sifive-gpio.c
@@ -158,7 +158,7 @@ static int sifive_gpio_ofdata_to_platdata(struct udevice *dev)
struct sifive_gpio_platdata *plat = dev_get_platdata(dev);
fdt_addr_t addr;
- addr = devfdt_get_addr(dev);
+ addr = dev_read_addr(dev);
if (addr == FDT_ADDR_T_NONE)
return -EINVAL;
--
2.25.0
More information about the U-Boot
mailing list