Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756721AbdLPKIi (ORCPT ); Sat, 16 Dec 2017 05:08:38 -0500 Received: from mail-wr0-f193.google.com ([209.85.128.193]:36904 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756164AbdLPKIR (ORCPT ); Sat, 16 Dec 2017 05:08:17 -0500 X-Google-Smtp-Source: ACJfBos/o/xODqeV4LwkcS996dM6OePVybK/4qh63uT7q5Bsbr1GGxgB02P4fGC8D6moLdSjrnX2FQ== From: Vincent Legoll To: kys@microsoft.com, haiyangz@microsoft.com, sthemmin@microsoft.com, devel@linuxdriverproject.org, linux-kernel@vger.kernel.org Cc: Vincent Legoll Subject: [PATCH] hyperv: make HYPERV a menuconfig to ease disabling it all Date: Sat, 16 Dec 2017 11:07:59 +0100 Message-Id: <20171216100759.10381-2-vincent.legoll@gmail.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20171216100759.10381-1-vincent.legoll@gmail.com> References: <20171216100759.10381-1-vincent.legoll@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1036 Lines: 39 No need to get into the submenu to disable all HYPERV-related config entries. This makes it easier to disable all HYPERV config options without entering the submenu. It will also enable one to see that en/dis-abled state from the outside menu. This is only intended to change menuconfig UI, not change the config dependencies. v2: added "default y" to avoid breaking existing configs Signed-off-by: Vincent Legoll --- drivers/hv/Kconfig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/hv/Kconfig b/drivers/hv/Kconfig index 50b89ea0e60f..a6cda712135f 100644 --- a/drivers/hv/Kconfig +++ b/drivers/hv/Kconfig @@ -1,4 +1,8 @@ -menu "Microsoft Hyper-V guest support" +menuconfig HYPERV_MENU + bool "Microsoft Hyper-V guest support" + default y + +if HYPERV_MENU config HYPERV tristate "Microsoft Hyper-V client drivers" @@ -23,4 +27,4 @@ config HYPERV_BALLOON help Select this option to enable Hyper-V Balloon driver. -endmenu +endif # HYPERV_MENU -- 2.14.1