From patchwork Sun Dec 9 18:07:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Miquel Raynal X-Patchwork-Id: 1010053 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 43CZNj57Xnz9s3q for ; Mon, 10 Dec 2018 05:24:21 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 48EDDC22393; Sun, 9 Dec 2018 18:16:46 +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=RCVD_IN_DNSWL_BLOCKED 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 87931C226DA; Sun, 9 Dec 2018 18:08:55 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B7B87C22357; Sun, 9 Dec 2018 18:08:50 +0000 (UTC) Received: from mail.bootlin.com (mail.bootlin.com [62.4.15.54]) by lists.denx.de (Postfix) with ESMTP id A8C25C2236B for ; Sun, 9 Dec 2018 18:08:31 +0000 (UTC) Received: by mail.bootlin.com (Postfix, from userid 110) id D652920CE8; Sun, 9 Dec 2018 19:08:30 +0100 (CET) Received: from localhost.localdomain (unknown [37.171.2.184]) by mail.bootlin.com (Postfix) with ESMTPSA id 0BBF020CDF; Sun, 9 Dec 2018 19:08:19 +0100 (CET) From: Miquel Raynal To: Boris Brezillon , Marek Vasut , Jagan Teki , Tom Rini , u-boot@lists.denx.de Date: Sun, 9 Dec 2018 19:07:38 +0100 Message-Id: <20181209180747.24575-17-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181209180747.24575-1-miquel.raynal@bootlin.com> References: <20181209180747.24575-1-miquel.raynal@bootlin.com> MIME-Version: 1.0 Cc: Kyungmin Park , Thomas Petazzoni , Miquel Raynal , Steve Rae , TsiChung Liew Subject: [U-Boot] [PATCH v4 16/25] configs: remove raw NAND core from k2g defconfigs 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" Due to previous Makefile organization, the raw NAND subdirectory was not compiled in if CMD_NAND was not enabled. Because the Denali driver does not compile with these boards (undefined environment offset), remove the dependency within the defconfig over the controller driver (was ignored anyway in the past). Signed-off-by: Miquel Raynal --- configs/k2g_evm_defconfig | 1 - configs/k2g_hs_evm_defconfig | 1 - 2 files changed, 2 deletions(-) diff --git a/configs/k2g_evm_defconfig b/configs/k2g_evm_defconfig index dee00ec8d4..b474781ccb 100644 --- a/configs/k2g_evm_defconfig +++ b/configs/k2g_evm_defconfig @@ -41,7 +41,6 @@ CONFIG_MMC_OMAP_HS=y CONFIG_MTD=y CONFIG_MTD_UBI=y CONFIG_MTD_RAW_NAND=y -CONFIG_NAND_DAVINCI=y CONFIG_DM_SPI_FLASH=y CONFIG_SPI_FLASH=y CONFIG_SPI_FLASH_BAR=y diff --git a/configs/k2g_hs_evm_defconfig b/configs/k2g_hs_evm_defconfig index b8c395d78d..a50a7abf30 100644 --- a/configs/k2g_hs_evm_defconfig +++ b/configs/k2g_hs_evm_defconfig @@ -34,7 +34,6 @@ CONFIG_MMC_OMAP_HS=y CONFIG_MTD=y CONFIG_MTD_UBI=y CONFIG_MTD_RAW_NAND=y -CONFIG_NAND_DAVINCI=y CONFIG_DM_SPI_FLASH=y CONFIG_SPI_FLASH=y CONFIG_SPI_FLASH_BAR=y