Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752139AbdLCK5c (ORCPT ); Sun, 3 Dec 2017 05:57:32 -0500 Received: from mail-wr0-f195.google.com ([209.85.128.195]:42445 "EHLO mail-wr0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751604AbdLCK5Y (ORCPT ); Sun, 3 Dec 2017 05:57:24 -0500 X-Google-Smtp-Source: AGs4zMYxMxsfXlkHOZX6SkdAFeOMtH7en8wCEbFHsQJ8VJDkbExYa1PIRl1NaZ+k1di5+XcgHWq9QQ== From: Vincent Legoll To: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org Cc: Vincent Legoll Subject: [PATCH] Make TI_ST a menuconfig to ease disabling it all Date: Sun, 3 Dec 2017 11:57:07 +0100 Message-Id: <20171203105707.14094-2-vincent.legoll@gmail.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171203105707.14094-1-vincent.legoll@gmail.com> References: <20170414093838.7905-1-vincent.legoll@gmail.com> <20171203105707.14094-1-vincent.legoll@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1064 Lines: 34 No need to get into the submenu to disable all TI_ST-related config entries Signed-off-by: Vincent Legoll --- drivers/misc/ti-st/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/misc/ti-st/Kconfig b/drivers/misc/ti-st/Kconfig index f34dcc514730..f007cfa82b89 100644 --- a/drivers/misc/ti-st/Kconfig +++ b/drivers/misc/ti-st/Kconfig @@ -2,10 +2,12 @@ # TI's shared transport line discipline and the protocol # drivers (BT, FM and GPS) # -menu "Texas Instruments shared transport line discipline" +menuconfig TIST + bool "Texas Instruments shared transport line discipline" + config TI_ST tristate "Shared transport core driver" - depends on NET && GPIOLIB && TTY + depends on TIST && NET && GPIOLIB && TTY select FW_LOADER help This enables the shared transport core driver for TI @@ -13,5 +15,3 @@ config TI_ST to register themselves with core and send data, the responses are returned to relevant protocol drivers based on their packet types. - -endmenu -- 2.11.0