From patchwork Thu Jan 12 03:16:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 91032 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp1429542qgi; Wed, 11 Jan 2017 19:16:50 -0800 (PST) X-Received: by 10.195.6.11 with SMTP id cq11mr6921855wjd.170.1484191010342; Wed, 11 Jan 2017 19:16:50 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id l190si619764wmb.49.2017.01.11.19.16.50; Wed, 11 Jan 2017 19:16:50 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A3F51B38D2; Thu, 12 Jan 2017 04:16:49 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gOjXvrgW177x; Thu, 12 Jan 2017 04:16:49 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9685EB389C; Thu, 12 Jan 2017 04:16:48 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id F327FB389C for ; Thu, 12 Jan 2017 04:16:43 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XffSDCxW-YDU for ; Thu, 12 Jan 2017 04:16:43 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by theia.denx.de (Postfix) with ESMTPS id 2EB38B3897 for ; Thu, 12 Jan 2017 04:16:39 +0100 (CET) Received: from pug.jp.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id v0C3GJXn029944; Thu, 12 Jan 2017 12:16:19 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com v0C3GJXn029944 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1484190980; bh=r9rIyS/GRMSP/L9KuKoWj26XJ71eZCZQe83UaTyvBLM=; h=From:To:Cc:Subject:Date:From; b=jZuSVMNvpHDp3tcgXrYRoz1y1XWOGPeFTYLEg0w+akd+KGG5YRkJKID7NPcM9OrFV D8bodrnGmtEU+uC+D7Q3MfVKUMVGUwZ8viNckEnXUPFyA5QsGnBM1z9QyuE7+WK8Fp BrdhsDmz8UcShQ98lllPckjZMpoMQGyBw5wbaPdbxrd/v8OxmrfxfG4BxyCgYT6tMX A7PpareGHZXDYYMFEm4ZdO0g3eWXCfNhZNCXJsMm8ceOEdO5ExfvFO2MZ7U+teah2i ZuBzUHb/YsSGDSQLolE1yB/yshNxMN8HcSQdn+I33HdfpQJtSxqQiE0pD80Dz527j9 ph0u8CHakW86g== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Thu, 12 Jan 2017 12:16:15 +0900 Message-Id: <1484190975-13351-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Cc: Maxime Ripard , Jagan Teki Subject: [U-Boot] [PATCH] mmc: sunxi: revive depends on UART0_PORT_F X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" Commit f401e907fcbc ("ARM: sunxi: remove bare default for CONFIG_MMC") dropped "depends on UART0_PORT_F", but it is still needed. Revive it as a prerequisite of CONFIG_MMC_SUNXI. Signed-off-by: Masahiro Yamada --- drivers/mmc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.7.4 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot Acked-by: Maxime Ripard diff --git a/drivers/mmc/Kconfig b/drivers/mmc/Kconfig index 0aef132..9ed8da3 100644 --- a/drivers/mmc/Kconfig +++ b/drivers/mmc/Kconfig @@ -299,7 +299,7 @@ config MMC_SDHCI_TEGRA config MMC_SUNXI bool "Allwinner sunxi SD/MMC Host Controller support" - depends on ARCH_SUNXI + depends on ARCH_SUNXI && !UART0_PORT_F default y help This selects support for the SD/MMC Host Controller on