From: Andrew Morton Date: Thu, 15 Oct 2015 22:28:35 +0000 (-0700) Subject: lib/Kconfig: ZLIB_DEFLATE must select BITREVERSE X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~11454^2~1 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=1fd4e5c347bfcef6ae2c31f6a2abce00f6ecaa3f;p=mirror_ubuntu-focal-kernel.git lib/Kconfig: ZLIB_DEFLATE must select BITREVERSE lib/built-in.o: In function `__bitrev32': deftree.c:(.text+0x1e799): undefined reference to `byte_rev_table' deftree.c:(.text+0x1e7a0): undefined reference to `byte_rev_table' deftree.c:(.text+0x1e7b4): undefined reference to `byte_rev_table' deftree.c:(.text+0x1e7c1): undefined reference to `byte_rev_table' Anything which uses bitrevX() has to select BITREVERSE, to grab lib/bitrev.o. Reported-by: Jim Davis Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/Kconfig b/lib/Kconfig index 2e491ac15622..f0df318104e7 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -220,6 +220,7 @@ config ZLIB_INFLATE config ZLIB_DEFLATE tristate + select BITREVERSE config LZO_COMPRESS tristate