Message ID | 20200117124616.24695-6-pragnesh.patel@sifive.com |
---|---|
State | New |
Headers | show |
Series | RISC-V SiFive FU540 support SPL | expand |
On Fri, Jan 17, 2020 at 6:18 PM Pragnesh Patel <pragnesh.patel at sifive.com> wrote: > > When build U-boot SPL, meet an issue of undefined reference to > 'crc7' for drivers/mmc/mmc_spi.c, so let's compile crc7.c when > CONFIG_MMC_SPI selected. > > Signed-off-by: Pragnesh Patel <pragnesh.patel at sifive.com> > --- > lib/Makefile | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/Makefile b/lib/Makefile > index 6b7b9ce85c..8e3a071786 100644 > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -77,6 +77,7 @@ endif > > ifdef CONFIG_SPL_BUILD > obj-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16.o > +obj-$(CONFIG_MMC_SPI) += crc7.o > obj-$(CONFIG_$(SPL_TPL_)HASH_SUPPORT) += crc16.o > obj-y += net_utils.o > endif > -- > 2.17.1 > LGTM. Reviewed-by: Anup Patel <anup.patel at wdc.com> Regards, Anup
diff --git a/lib/Makefile b/lib/Makefile index 6b7b9ce85c..8e3a071786 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -77,6 +77,7 @@ endif ifdef CONFIG_SPL_BUILD obj-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16.o +obj-$(CONFIG_MMC_SPI) += crc7.o obj-$(CONFIG_$(SPL_TPL_)HASH_SUPPORT) += crc16.o obj-y += net_utils.o endif
When build U-boot SPL, meet an issue of undefined reference to 'crc7' for drivers/mmc/mmc_spi.c, so let's compile crc7.c when CONFIG_MMC_SPI selected. Signed-off-by: Pragnesh Patel <pragnesh.patel at sifive.com> --- lib/Makefile | 1 + 1 file changed, 1 insertion(+)