Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751030AbdLIPWH (ORCPT ); Sat, 9 Dec 2017 10:22:07 -0500 Received: from mail-wm0-f65.google.com ([74.125.82.65]:36651 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750886AbdLIPWG (ORCPT ); Sat, 9 Dec 2017 10:22:06 -0500 X-Google-Smtp-Source: AGs4zManGoX9Rojtys60M1xofyDFa4x0imWo/gSnFc3dfibAIerCTdaTNSBps1E5+v8aTkQlfD4/7g== 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, 9 Dec 2017 16:21:51 +0100 Message-Id: <20171209152151.4341-1-vincent.legoll@gmail.com> X-Mailer: git-send-email 2.14.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 965 Lines: 36 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. Signed-off-by: Vincent Legoll --- drivers/hv/Kconfig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/hv/Kconfig b/drivers/hv/Kconfig index 50b89ea0e60f..5804081d936d 100644 --- a/drivers/hv/Kconfig +++ b/drivers/hv/Kconfig @@ -1,4 +1,7 @@ -menu "Microsoft Hyper-V guest support" +menuconfig HYPERV_MENU + bool "Microsoft Hyper-V guest support" + +if HYPERV_MENU config HYPERV tristate "Microsoft Hyper-V client drivers" @@ -23,4 +26,4 @@ config HYPERV_BALLOON help Select this option to enable Hyper-V Balloon driver. -endmenu +endif # HYPERV_MENU -- 2.14.1