> -----Original Message----- > From: Michael Trimarchi [mailto:[email protected]] > Sent: 2018年6月21日 4:51 > To: Jagan Teki <[email protected]> > Cc: Stefano Babic <[email protected]>; Peng Fan <[email protected]>; > [email protected]; [email protected] > Subject: [PATCH 1/3] spi: mxc: Fix compilation problem of DM_SPI class driver > > drivers/spi/mxc_spi.c:507: undefined reference to `dev_get_addr' > linux-ld.bfd: BFD (GNU Binutils) 2.29.1 assertion fail elf32-arm.c:9509 > > Signed-off-by: Michael Trimarchi <[email protected]> > --- > drivers/spi/mxc_spi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/spi/mxc_spi.c b/drivers/spi/mxc_spi.c index > b77129c..fcb214a > 100644 > --- a/drivers/spi/mxc_spi.c > +++ b/drivers/spi/mxc_spi.c > @@ -504,7 +504,7 @@ static int mxc_spi_probe(struct udevice *bus) > return -EINVAL; > } > > - plat->base = dev_get_addr(bus); > + plat->base = devfdt_get_addr(bus); > if (plat->base == FDT_ADDR_T_NONE) > return -ENODEV;
Reviewed-by: Peng Fan <[email protected]> > > -- > 2.7.4 _______________________________________________ U-Boot mailing list [email protected] https://lists.denx.de/listinfo/u-boot

