From: Ralf Baechle Date: Thu, 26 Jun 2014 13:43:01 +0000 (+0100) Subject: MIPS: Lasat: Fix build error if CRC32 is not enabled. X-Git-Tag: firefly_0821_release~176^2~3687^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=16f0bbbc1fbe0d09cda5b5b2dbbd6716026dfa7b;p=firefly-linux-kernel-4.4.55.git MIPS: Lasat: Fix build error if CRC32 is not enabled. Kconfig doesn't select CRC32 so it's possible to build a Lasat kernel without CONFIG_CRC32 resulting in a build error: LD vmlinux arch/mips/built-in.o: In function `lasat_init_board_info': (.text+0x22c): undefined reference to `crc32_le' arch/mips/built-in.o: In function `lasat_write_eeprom_info': (.text+0x7fc): undefined reference to `crc32_le' make: *** [vmlinux] Error 1 Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 7a469acee33c..4e238e6e661c 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -269,6 +269,7 @@ config LANTIQ config LASAT bool "LASAT Networks platforms" select CEVT_R4K + select CRC32 select CSRC_R4K select DMA_NONCOHERENT select SYS_HAS_EARLY_PRINTK