From patchwork Thu May 2 15:16:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 2512471 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork2.kernel.org (Postfix) with ESMTP id 4AAE6DF215 for ; Thu, 2 May 2013 15:24:40 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UXvJw-0001VO-1c; Thu, 02 May 2013 15:21:32 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UXvH3-0002Xf-HG; Thu, 02 May 2013 15:18:21 +0000 Received: from bombadil.infradead.org ([2001:4830:2446:ff00:4687:fcff:fea6:5117]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UXvFb-0002NV-E3 for linux-arm-kernel@merlin.infradead.org; Thu, 02 May 2013 15:16:51 +0000 Received: from moutng.kundenserver.de ([212.227.126.187]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UXvFZ-0006dm-3c for linux-arm-kernel@lists.infradead.org; Thu, 02 May 2013 15:16:50 +0000 Received: from wuerfel.lan (HSI-KBW-095-208-002-043.hsi5.kabel-badenwuerttemberg.de [95.208.2.43]) by mrelayeu.kundenserver.de (node=mreu4) with ESMTP (Nemesis) id 0M1uF5-1UIBZV1EEt-00u3Im; Thu, 02 May 2013 17:16:14 +0200 From: Arnd Bergmann To: linux-kernel@vger.kernel.org Subject: [PATCH, RFC 09/22] crypto: lz4: don't build on ARM Date: Thu, 2 May 2013 17:16:13 +0200 Message-Id: <1367507786-505303-10-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1367507786-505303-1-git-send-email-arnd@arndb.de> References: <1367507786-505303-1-git-send-email-arnd@arndb.de> X-Provags-ID: V02:K0:5M2TImUS4ktGM2EKbnWxsD422uJz6Tv3MkR0dN0Fbmb Bfe0GAX1aqnOcsJbhjHzoPdJhfywQ4yBXR5/ieSYqD6mpDtHxm X0yb8H2pZS10hEwKQEYbLvcWA1K9MrYN6vNuixAsdQoxHM1noB LWoLTraUL/yoEnECPiBExqOYVde6z6bdLN5QGZdWX1M2lOUN3L +HPOmKKcdB6CcQcE45ouF7jYRpM+/KsZK9S8dSpF4o/yub2jl3 WYdRKqSy/zTyiTggGi6uiIbh9NblX28CeBOlCouSt2k8M9YsQV Xd+zlf9ilWJezB5UNhPY+4yzrs1IIeg60Mm9SC1zwtIWb/oxCG mvC7cwaz06zvrcI1WOzPOnttXxtF/f8fMeVdSGqAU X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130502_111649_408574_1E743087 X-CRM114-Status: UNSURE ( 8.41 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -0.0 (/) X-Spam-Report: SpamAssassin version 3.3.2 on bombadil.infradead.org summary: Content analysis details: (-0.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.126.187 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record Cc: Herbert Xu , Chanho Min , Arnd Bergmann , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org It is not currently possible to build the LZ4 code on ARM, so let's remove that option in Kconfig for now. lib/built-in.o: In function `lz4_compress64kctx': lib/lz4/lz4_compress.c:339: undefined reference to `__ctzsi2' lib/built-in.o: In function `lz4_compressctx': lib/lz4/lz4_compress.c:157: undefined reference to `__ctzsi2' lib/built-in.o: In function `lz4hc_commonlength': lib/lz4/lz4hc_compress.c:102: undefined reference to `__ctzsi2' lib/lz4/lz4hc_compress.c:102: undefined reference to `__ctzsi2' lib/built-in.o: In function `lz4hc_insertandgetwidermatch': lib/lz4/lz4hc_compress.c:230: undefined reference to `__ctzsi2' Cc: Chanho Min Cc: Herbert Xu Signed-off-by: Arnd Bergmann --- crypto/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/Kconfig b/crypto/Kconfig index aa3a349..1cd134b 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -1361,6 +1361,7 @@ config CRYPTO_842 config CRYPTO_LZ4 tristate "LZ4 compression algorithm" + depends on !ARM select CRYPTO_ALGAPI select LZ4_COMPRESS select LZ4_DECOMPRESS @@ -1369,6 +1370,7 @@ config CRYPTO_LZ4 config CRYPTO_LZ4HC tristate "LZ4HC compression algorithm" + depends on !ARM select CRYPTO_ALGAPI select LZ4HC_COMPRESS select LZ4_DECOMPRESS