mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
pinctrl: imx: use devfdt_get_addr_size_index
fdtdec_get_addr_size could not parse addr/size correctly is using address-cells 2 and size-cells 2 on an ARM32 SoC. So switch to use devfdt_get_addr_size_index. Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
bdcac95565
commit
39ebb4187d
1 changed files with 1 additions and 3 deletions
|
@ -214,9 +214,7 @@ int imx_pinctrl_probe(struct udevice *dev,
|
|||
if (info->flags & IMX8_USE_SCU)
|
||||
return 0;
|
||||
|
||||
addr = fdtdec_get_addr_size(gd->fdt_blob, dev_of_offset(dev), "reg",
|
||||
&size);
|
||||
|
||||
addr = devfdt_get_addr_size_index(dev, 0, &size);
|
||||
if (addr == FDT_ADDR_T_NONE)
|
||||
return -EINVAL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue