From patchwork Fri Aug 7 15:29:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Aggarwal, Anuj" X-Patchwork-Id: 39956 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n77FV5JK024031 for ; Fri, 7 Aug 2009 15:31:05 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752255AbZHGP3i (ORCPT ); Fri, 7 Aug 2009 11:29:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752238AbZHGP3i (ORCPT ); Fri, 7 Aug 2009 11:29:38 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:51377 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751954AbZHGP3g (ORCPT ); Fri, 7 Aug 2009 11:29:36 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id n77FTMQk019679; Fri, 7 Aug 2009 10:29:27 -0500 Received: from psplinux050.india.ti.com (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id n77FTLn2026998; Fri, 7 Aug 2009 20:59:21 +0530 (IST) Received: from psplinux050.india.ti.com (localhost [127.0.0.1]) by psplinux050.india.ti.com (8.13.1/8.13.1) with ESMTP id n77FTL64011059; Fri, 7 Aug 2009 20:59:21 +0530 Received: (from a0393534@localhost) by psplinux050.india.ti.com (8.13.1/8.13.1/Submit) id n77FTLQq011056; Fri, 7 Aug 2009 20:59:21 +0530 From: Anuj Aggarwal To: broonie@sirena.org.uk, lrg@slimlogic.co.uk, linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Anuj Aggarwal Subject: [PATCH 5/8] Regulator: Adding TPS65023 and TPS6507x in Kconfig and Makefile Date: Fri, 7 Aug 2009 20:59:20 +0530 Message-Id: <1249658960-11021-1-git-send-email-anuj.aggarwal@ti.com> X-Mailer: git-send-email 1.6.2.4 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Adding TPS65023 and TPS6507x regulator driver support in drivers/regulator/Makefile and drivers/regulator/Kconfig Signed-off-by: Anuj Aggarwal --- drivers/regulator/Kconfig | 16 ++++++++++++++++ drivers/regulator/Makefile | 2 ++ 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index f431779..5f5b587 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -117,4 +117,20 @@ config REGULATOR_LP3971 Say Y here to support the voltage regulators and convertors on National Semiconductors LP3971 PMIC +config REGULATOR_TPS65023 + tristate "TI TPS65023 Power regulators" + depends on OMAP3EVM_TPS65023 + help + This driver supports TPS65023 voltage regulator chips. TPS65023 provides + three step-down converters and two general-purpose LDO voltage regulators. + It supports TI's software based Class-2 SmartReflex implementation. + +config REGULATOR_TPS65073 + tristate "TI TPS65073 Power regulators" + depends on OMAP3EVM_TPS65073 + help + This driver supports TPS65073 voltage regulator chips. TPS65073 provides + three step-down converters and two general-purpose LDO voltage regulators. + It supports TI's software based Class-2 SmartReflex implementation. + endif diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile index 4d762c4..3863e3d 100644 --- a/drivers/regulator/Makefile +++ b/drivers/regulator/Makefile @@ -16,5 +16,7 @@ obj-$(CONFIG_REGULATOR_WM8350) += wm8350-regulator.o obj-$(CONFIG_REGULATOR_WM8400) += wm8400-regulator.o obj-$(CONFIG_REGULATOR_DA903X) += da903x.o obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o +obj-$(CONFIG_REGULATOR_TPS65023) += tps65023-regulator.o +obj-$(CONFIG_REGULATOR_TPS65073) += tps6507x-regulator.o ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG