diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-06-07 18:45:57 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-07-11 12:13:43 +0200 |
commit | 9f4f914d7f9e3188189bafd73d8cfa743de85fd2 (patch) | |
tree | d62f2a43f55e8d4d3afc820d0def241e07935405 /drivers/pinctrl/rockchip/pinctrl_rk3399.c | |
parent | d85ca029f257b53a96da6c2fb421e78a003a9943 (diff) | |
download | u-boot-9f4f914d7f9e3188189bafd73d8cfa743de85fd2.tar.gz |
rockchip: pinctrl: dm: convert fdt_get to dev_read
With the new dev_read functions available, we can convert the rockchip
architecture-specific drivers and common drivers used by these devices
over to the dev_read family of calls.
This change covers the pinctrl drivers for the Rockchip devices.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/pinctrl/rockchip/pinctrl_rk3399.c')
-rw-r--r-- | drivers/pinctrl/rockchip/pinctrl_rk3399.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pinctrl/rockchip/pinctrl_rk3399.c b/drivers/pinctrl/rockchip/pinctrl_rk3399.c index d93b90310b..cab268c7d6 100644 --- a/drivers/pinctrl/rockchip/pinctrl_rk3399.c +++ b/drivers/pinctrl/rockchip/pinctrl_rk3399.c @@ -350,8 +350,7 @@ static int rk3399_pinctrl_get_periph_id(struct udevice *dev, u32 cell[3]; int ret; - ret = fdtdec_get_int_array(gd->fdt_blob, dev_of_offset(periph), - "interrupts", cell, ARRAY_SIZE(cell)); + ret = dev_read_u32_array(periph, "interrupts", cell, ARRAY_SIZE(cell)); if (ret < 0) return -EINVAL; |