From patchwork Tue May 9 11:31:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 760029 X-Patchwork-Delegate: jh80.chung@samsung.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3wMcgQ3Zp0z9s7C for ; Tue, 9 May 2017 21:33:06 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="C6pBJOAp"; dkim-atps=neutral Received: by lists.denx.de (Postfix, from userid 105) id 2FB48C21C34; Tue, 9 May 2017 11:32:39 +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=T_DKIM_INVALID 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 BFCB2C21C6D; Tue, 9 May 2017 11:32:23 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id AE152C21C30; Tue, 9 May 2017 11:32:20 +0000 (UTC) Received: from conuserg-10.nifty.com (conuserg-10.nifty.com [210.131.2.77]) by lists.denx.de (Postfix) with ESMTPS id 6621CC21C31 for ; Tue, 9 May 2017 11:32:19 +0000 (UTC) Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id v49BVsWc001830; Tue, 9 May 2017 20:31:57 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com v49BVsWc001830 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1494329517; bh=VgDYXQRzvECSfPx29avQ5YGPF082XexUIROS3ucEL78=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=C6pBJOApVRSaTMFXP/sI/nVhIExKs0rlKIGcnYSUZAEGnOknY7xcfcViGSBTEvcPh kmyW7FySe0pC8EXxXjIQFdJkDKMAq4DjahafWRmT7ia3THrOFQ80Eq54FjIeMW+fMv igUtmLBKMYdSCAA/aSrWTyPprj/hzqDW+jCQKXVY/QIYIBYrNQCBObHv4AWR6bH1cO +XKwxle3yHD2KlMf2JDJGJIph0eEbdm9gUi72QCgG6l0u8AOUslCBrbiY4Iuaty2Xt 2CrkftENITKkpUBg7ZEgWaIP8fKNsnfZ/Rb/7zXKsnL7csLQmAyaQ3XXxVdTr+TptF c5ir0JXSIq+nw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Tue, 9 May 2017 20:31:38 +0900 Message-Id: <1494329500-19364-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1494329500-19364-1-git-send-email-yamada.masahiro@socionext.com> References: <1494329500-19364-1-git-send-email-yamada.masahiro@socionext.com> Subject: [U-Boot] [PATCH 2/4] blanche_defconfig: enable CONFIG_MMC 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" As commit 54925327fa11 ("mmc: move CONFIG_GENERIC_MMC to Kconfig") addressed, this is one of the last weird defconfigs that define CONFIG_GENERIC_MMC without CONFIG_MMC. Now I took a closer look at this. Given that both CONFIG_CMD_MMC and CONFIG_GENERIC_MMC are set for this defconfig, CONFIG_MMC should be enabled. Signed-off-by: Masahiro Yamada --- configs/blanche_defconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configs/blanche_defconfig b/configs/blanche_defconfig index 5664421..a963802 100644 --- a/configs/blanche_defconfig +++ b/configs/blanche_defconfig @@ -15,8 +15,7 @@ CONFIG_CMD_EXT2=y CONFIG_CMD_EXT4=y CONFIG_CMD_EXT4_WRITE=y CONFIG_CMD_FAT=y -# CONFIG_MMC is not set -CONFIG_GENERIC_MMC=y +CONFIG_MMC=y CONFIG_MTD_NOR_FLASH=y CONFIG_SPI_FLASH=y CONFIG_SPI_FLASH_BAR=y