From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759468AbcILOlQ (ORCPT ); Mon, 12 Sep 2016 10:41:16 -0400 Received: from mail1.windriver.com ([147.11.146.13]:46426 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759249AbcILOlN (ORCPT ); Mon, 12 Sep 2016 10:41:13 -0400 From: Paul Gortmaker To: CC: Paul Gortmaker , Samuel Ortiz , Lee Jones , Florian Lobmaier , Laxman Dewangan Subject: [PATCH 2/6] mfd: as3722: convert MFD_AS3722 from bool to tristate Date: Mon, 12 Sep 2016 10:40:50 -0400 Message-ID: <20160912144054.27522-3-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.8.4 In-Reply-To: <20160912144054.27522-1-paul.gortmaker@windriver.com> References: <20160912144054.27522-1-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_AS3722 drivers/mfd/Kconfig: bool "ams AS3722 Power Management IC" ...meaning that it currently is not being built as a module by anyone. In response to an earlier patch set suggesting removal of the unused modular code, Laxman suggested that this driver be instead moved to tristate. We do that here, and confirm it can build and modpost as a tristate. However there remains to be runtime testing in order to ensure this change is 100% functional for "=m". Cc: Samuel Ortiz Cc: Lee Jones Cc: Florian Lobmaier Cc: Laxman Dewangan Signed-off-by: Paul Gortmaker --- drivers/mfd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 9ac9f6250ba8..9a529bf06eed 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -50,7 +50,7 @@ config MFD_AS3711 Support for the AS3711 PMIC from AMS config MFD_AS3722 - bool "ams AS3722 Power Management IC" + tristate "ams AS3722 Power Management IC" select MFD_CORE select REGMAP_I2C select REGMAP_IRQ -- 2.8.4