public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH AUTOSEL 3.18 1/7] cpufreq: imx6q: add return value check for voltage scale
@ 2018-11-22 19:57 Sasha Levin
  2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 2/7] ARM: make lookup_processor_type() non-__init Sasha Levin
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Sasha Levin @ 2018-11-22 19:57 UTC (permalink / raw)
  To: stable, linux-kernel
  Cc: Anson Huang, Anson Huang, Rafael J . Wysocki, Sasha Levin,
	linux-pm

From: Anson Huang <anson.huang@nxp.com>

[ Upstream commit 6ef28a04d1ccf718eee069b72132ce4aa1e52ab9 ]

Add return value check for voltage scale when ARM clock
rate change fail.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/cpufreq/imx6q-cpufreq.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c
index c2d30765bf3d..a4ede00483d1 100644
--- a/drivers/cpufreq/imx6q-cpufreq.c
+++ b/drivers/cpufreq/imx6q-cpufreq.c
@@ -105,8 +105,13 @@ static int imx6q_set_target(struct cpufreq_policy *policy, unsigned int index)
 	/* Ensure the arm clock divider is what we expect */
 	ret = clk_set_rate(arm_clk, new_freq * 1000);
 	if (ret) {
+		int ret1;
+
 		dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
-		regulator_set_voltage_tol(arm_reg, volt_old, 0);
+		ret1 = regulator_set_voltage_tol(arm_reg, volt_old, 0);
+		if (ret1)
+			dev_warn(cpu_dev,
+				 "failed to restore vddarm voltage: %d\n", ret1);
 		return ret;
 	}
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-11-22 19:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-22 19:57 [PATCH AUTOSEL 3.18 1/7] cpufreq: imx6q: add return value check for voltage scale Sasha Levin
2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 2/7] ARM: make lookup_processor_type() non-__init Sasha Levin
2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 3/7] ARM: split out processor lookup Sasha Levin
2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 4/7] SUNRPC: Fix a bogus get/put in generic_key_to_expire() Sasha Levin
2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 5/7] kdb: Use strscpy with destination buffer size Sasha Levin
2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 6/7] powerpc/numa: Suppress "VPHN is not supported" messages Sasha Levin
2018-11-22 19:57 ` [PATCH AUTOSEL 3.18 7/7] tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox