From patchwork Tue Dec 4 23:57:09 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Miquel Raynal X-Patchwork-Id: 1007936 X-Patchwork-Delegate: jagannadh.teki@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=bootlin.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 438fLp6d94z9s3l for ; Wed, 5 Dec 2018 11:12:34 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 9D292C22437; Wed, 5 Dec 2018 00:07:35 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 48B2EC224AE; Tue, 4 Dec 2018 23:58:26 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8A49DC2245A; Tue, 4 Dec 2018 23:58:07 +0000 (UTC) Received: from mail.bootlin.com (mail.bootlin.com [62.4.15.54]) by lists.denx.de (Postfix) with ESMTP id 34B09C2241B for ; Tue, 4 Dec 2018 23:57:49 +0000 (UTC) Received: by mail.bootlin.com (Postfix, from userid 110) id 7C20320E1F; Wed, 5 Dec 2018 00:57:48 +0100 (CET) Received: from localhost.localdomain (unknown [91.224.148.103]) by mail.bootlin.com (Postfix) with ESMTPSA id DAE4620E1D; Wed, 5 Dec 2018 00:57:32 +0100 (CET) From: Miquel Raynal To: Boris Brezillon , Marek Vasut , Jagan Teki , Tom Rini , u-boot@lists.denx.de Date: Wed, 5 Dec 2018 00:57:09 +0100 Message-Id: <20181204235714.11805-24-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181204235714.11805-1-miquel.raynal@bootlin.com> References: <20181204235714.11805-1-miquel.raynal@bootlin.com> MIME-Version: 1.0 Cc: Kyungmin Park , Miquel Raynal , Steve Rae , TsiChung Liew Subject: [U-Boot] [PATCH v3 23/28] mtd: ubi: remove dependency on command in Kconfig X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Now that the defconfigs have been fixed, remove the dependencies on commands in Kconfig. The necessary symbols are enabled so this will not break anything. Signed-off-by: Miquel Raynal --- drivers/mtd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/Makefile b/drivers/mtd/Makefile index 486634b562..68b1029734 100644 --- a/drivers/mtd/Makefile +++ b/drivers/mtd/Makefile @@ -24,5 +24,5 @@ ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),) obj-y += nand/ obj-y += onenand/ obj-y += spi/ -obj-$(CONFIG_CMD_UBI) += ubi/ +obj-$(CONFIG_MTD_UBI) += ubi/ endif