From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757221Ab3AYMdi (ORCPT ); Fri, 25 Jan 2013 07:33:38 -0500 Received: from zmc.proxad.net ([212.27.53.206]:35566 "EHLO zmc.proxad.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755802Ab3AYMdY (ORCPT ); Fri, 25 Jan 2013 07:33:24 -0500 From: Florian Fainelli To: linux-kernel@vger.kernel.org Cc: lasse.collin@tukaani.org, akpm@linux-foundation.org, Florian Fainelli Subject: [PATCH 2/3] decompressors: drop dependency on CONFIG_EXPERT Date: Fri, 25 Jan 2013 13:30:35 +0100 Message-Id: <1359117036-25064-2-git-send-email-florian@openwrt.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1359117036-25064-1-git-send-email-florian@openwrt.org> References: <1358266931-23401-1-git-send-email-florian@openwrt.org> <1359117036-25064-1-git-send-email-florian@openwrt.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch removes the XZ_DEC_* depedencey on CONFIG_EXPERT as recommended by Lasse Colin. Acked-by: Lasse Collin Signed-off-by: Florian Fainelli --- lib/xz/Kconfig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/xz/Kconfig b/lib/xz/Kconfig index 12d2d777..8d46470 100644 --- a/lib/xz/Kconfig +++ b/lib/xz/Kconfig @@ -9,32 +9,32 @@ config XZ_DEC if XZ_DEC config XZ_DEC_X86 - bool "x86 BCJ filter decoder" if EXPERT + bool "x86 BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_POWERPC - bool "PowerPC BCJ filter decoder" if EXPERT + bool "PowerPC BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_IA64 - bool "IA-64 BCJ filter decoder" if EXPERT + bool "IA-64 BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_ARM - bool "ARM BCJ filter decoder" if EXPERT + bool "ARM BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_ARMTHUMB - bool "ARM-Thumb BCJ filter decoder" if EXPERT + bool "ARM-Thumb BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_SPARC - bool "SPARC BCJ filter decoder" if EXPERT + bool "SPARC BCJ filter decoder" default y select XZ_DEC_BCJ -- 1.7.10.4