On Fri, 1 Apr 2022 at 06:44, Paweł Anikiel <p...@semihalf.com> wrote: > > This driver is a child of the rstmgr driver, both of which share the > same devicetree node. As a result, passing the child's udevice pointer > to dev_read_addr_ptr results in a failure of reading the #address-cells > property. Use the parent udevice pointer instead. > > Signed-off-by: Paweł Anikiel <p...@semihalf.com> > --- > drivers/sysreset/sysreset_socfpga.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Simon Glass <s...@chromium.org> > > diff --git a/drivers/sysreset/sysreset_socfpga.c > b/drivers/sysreset/sysreset_socfpga.c > index e38296ac3f..9b62dd5eab 100644 > --- a/drivers/sysreset/sysreset_socfpga.c > +++ b/drivers/sysreset/sysreset_socfpga.c > @@ -40,7 +40,7 @@ static int socfpga_sysreset_probe(struct udevice *dev) Perhaps this function > { > struct socfpga_sysreset_data *data = dev_get_priv(dev); > > - data->rstmgr_base = dev_read_addr_ptr(dev); > + data->rstmgr_base = dev_read_addr_ptr(dev_get_parent(dev)); > return 0; > } > > -- > 2.35.1.1094.g7c7d902a7c-goog > This is pretty odd and I think it could use a comment, particularly as this driver doesn't seem to be in the device tree. Regards, Simon