From patchwork Wed Jan 28 02:46:36 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Andersson X-Patchwork-Id: 5724131 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 65B14BFFA8 for ; Wed, 28 Jan 2015 02:52:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6CF5C201ED for ; Wed, 28 Jan 2015 02:52:45 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 93290201DD for ; Wed, 28 Jan 2015 02:52:44 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1YGIi5-0001Ac-8E; Wed, 28 Jan 2015 02:50:29 +0000 Received: from seldrel01.sonyericsson.com ([212.209.106.2]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YGIfI-0006Be-8k for linux-arm-kernel@lists.infradead.org; Wed, 28 Jan 2015 02:47:38 +0000 From: Bjorn Andersson To: Liam Girdwood , Mark Brown Subject: [PATCH 6/9] regulator: hi6421: move to set_optimum_mode Date: Tue, 27 Jan 2015 18:46:36 -0800 Message-ID: <1422413199-17273-7-git-send-email-bjorn.andersson@sonymobile.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1422413199-17273-1-git-send-email-bjorn.andersson@sonymobile.com> References: <1422413199-17273-1-git-send-email-bjorn.andersson@sonymobile.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150127_184736_598058_F0E3C0A1 X-CRM114-Status: UNSURE ( 9.87 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -5.0 (-----) Cc: linux-arm-msm@vger.kernel.org, patches@opensource.wolfsonmicro.com, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, agross@codeaurora.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Bjorn Andersson --- drivers/regulator/hi6421-regulator.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/drivers/regulator/hi6421-regulator.c b/drivers/regulator/hi6421-regulator.c index 42dc5fb..42b362d 100644 --- a/drivers/regulator/hi6421-regulator.c +++ b/drivers/regulator/hi6421-regulator.c @@ -477,15 +477,18 @@ static int hi6421_regulator_buck_set_mode(struct regulator_dev *rdev, return 0; } -unsigned int hi6421_regulator_ldo_get_optimum_mode(struct regulator_dev *rdev, +static int hi6421_regulator_ldo_set_optimum_mode(struct regulator_dev *rdev, int input_uV, int output_uV, int load_uA) { struct hi6421_regulator_info *info = rdev_get_drvdata(rdev); + unsigned int mode; if (load_uA > info->eco_microamp) - return REGULATOR_MODE_NORMAL; + mode = REGULATOR_MODE_NORMAL; + else + mode = REGULATOR_MODE_IDLE; - return REGULATOR_MODE_IDLE; + return hi6421_regulator_ldo_set_mode(rdev, mode); } static const struct regulator_ops hi6421_ldo_ops = { @@ -498,7 +501,7 @@ static const struct regulator_ops hi6421_ldo_ops = { .set_voltage_sel = regulator_set_voltage_sel_regmap, .get_mode = hi6421_regulator_ldo_get_mode, .set_mode = hi6421_regulator_ldo_set_mode, - .get_optimum_mode = hi6421_regulator_ldo_get_optimum_mode, + .set_optimum_mode = hi6421_regulator_ldo_set_optimum_mode, }; static const struct regulator_ops hi6421_ldo_linear_ops = { @@ -511,7 +514,7 @@ static const struct regulator_ops hi6421_ldo_linear_ops = { .set_voltage_sel = regulator_set_voltage_sel_regmap, .get_mode = hi6421_regulator_ldo_get_mode, .set_mode = hi6421_regulator_ldo_set_mode, - .get_optimum_mode = hi6421_regulator_ldo_get_optimum_mode, + .set_optimum_mode = hi6421_regulator_ldo_set_optimum_mode, }; static const struct regulator_ops hi6421_ldo_linear_range_ops = { @@ -524,7 +527,7 @@ static const struct regulator_ops hi6421_ldo_linear_range_ops = { .set_voltage_sel = regulator_set_voltage_sel_regmap, .get_mode = hi6421_regulator_ldo_get_mode, .set_mode = hi6421_regulator_ldo_set_mode, - .get_optimum_mode = hi6421_regulator_ldo_get_optimum_mode, + .set_optimum_mode = hi6421_regulator_ldo_set_optimum_mode, }; static const struct regulator_ops hi6421_buck012_ops = {