From patchwork Mon Jul 18 19:32:07 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Josh Triplett X-Patchwork-Id: 9235149 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9A2AE60756 for ; Mon, 18 Jul 2016 19:36:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8C816205A4 for ; Mon, 18 Jul 2016 19:36:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 815FF20649; Mon, 18 Jul 2016 19:36:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 03EC2205B0 for ; Mon, 18 Jul 2016 19:36:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752406AbcGRTg1 (ORCPT ); Mon, 18 Jul 2016 15:36:27 -0400 Received: from slow1-d.mail.gandi.net ([217.70.178.86]:39759 "EHLO slow1-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752401AbcGRTgY (ORCPT ); Mon, 18 Jul 2016 15:36:24 -0400 Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) by slow1-d.mail.gandi.net (Postfix) with ESMTP id 24CF347BD95 for ; Mon, 18 Jul 2016 21:32:18 +0200 (CEST) Received: from mfilter38-d.gandi.net (mfilter38-d.gandi.net [217.70.178.169]) by relay2-d.mail.gandi.net (Postfix) with ESMTP id C60A7C5A50; Mon, 18 Jul 2016 21:32:15 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mfilter38-d.gandi.net Received: from relay2-d.mail.gandi.net ([IPv6:::ffff:217.70.183.194]) by mfilter38-d.gandi.net (mfilter38-d.gandi.net [::ffff:10.0.15.180]) (amavisd-new, port 10024) with ESMTP id prATV13mo4fA; Mon, 18 Jul 2016 21:32:13 +0200 (CEST) X-Originating-IP: 50.39.163.18 Received: from x (50-39-163-18.bvtn.or.frontiernet.net [50.39.163.18]) (Authenticated sender: josh@joshtriplett.org) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id A7F06C5A46; Mon, 18 Jul 2016 21:32:09 +0200 (CEST) Date: Mon, 18 Jul 2016 12:32:07 -0700 From: Josh Triplett To: Linux Kbuild mailing list Cc: Arnd Bergmann , Michal Marek , "Yann E . MORIN" , Darren Hart , kernel-build-reports@lists.linaro.org, Thiago Macieira , Linux Kernel Mailing List , Masahiro Yamada Subject: [PATCH 1/1] kconfig: tinyconfig: x86: List disabled choices to avoid warning Message-ID: <20160718193206.GA20396@x> References: <20160718160035.3062818-1-arnd@arndb.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20160718160035.3062818-1-arnd@arndb.de> User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The Kconfig machinery used to power tinyconfig produces a warning like this when changing a "choice" option without explicitly disabling the other choices: .config:965:warning: override: NOHIGHMEM changes choice state Expand arch/x86/configs/tiny.config to add entries disabling the other two choices, to eliminate this warning. (Doing so then introduces a different form of warning for changing any option at all, but that needs fixing in the underlying config merge machinery.) Based on a similar change from Arnd Bergmann for the architecture-independent tiny.config. Signed-off-by: Josh Triplett Reported-by: Arnd Bergmann --- arch/x86/configs/tiny.config | 2 ++ 1 file changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/x86/configs/tiny.config b/arch/x86/configs/tiny.config index 4e2ecfa..4b429df 100644 --- a/arch/x86/configs/tiny.config +++ b/arch/x86/configs/tiny.config @@ -1 +1,3 @@ CONFIG_NOHIGHMEM=y +# CONFIG_HIGHMEM4G is not set +# CONFIG_HIGHMEM64G is not set