* Patch "regulator: qcom_smd: add list_voltage callback" has been added to the 4.6-stable tree
@ 2016-07-11 23:39 gregkh
2016-07-12 0:26 ` Mark Brown
0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2016-07-11 23:39 UTC (permalink / raw)
To: srinivas.kandagatla, broonie, gregkh; +Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
regulator: qcom_smd: add list_voltage callback
to the 4.6-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
regulator-qcom_smd-add-list_voltage-callback.patch
and it can be found in the queue-4.6 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From a8a47540ebe32f1733eebc3e5699af580ceaa3f5 Mon Sep 17 00:00:00 2001
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Date: Thu, 2 Jun 2016 11:23:15 +0100
Subject: regulator: qcom_smd: add list_voltage callback
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
commit a8a47540ebe32f1733eebc3e5699af580ceaa3f5 upstream.
This patch adds support to list_voltage callback, so that consumers
like mmc core, can get information of supported voltage range.
Without this patch there is no way for mmc core to know this voltage range.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/regulator/qcom_smd-regulator.c | 1 +
1 file changed, 1 insertion(+)
--- a/drivers/regulator/qcom_smd-regulator.c
+++ b/drivers/regulator/qcom_smd-regulator.c
@@ -140,6 +140,7 @@ static const struct regulator_ops rpm_sm
.enable = rpm_reg_enable,
.disable = rpm_reg_disable,
.is_enabled = rpm_reg_is_enabled,
+ .list_voltage = regulator_list_voltage_linear_range,
.get_voltage = rpm_reg_get_voltage,
.set_voltage = rpm_reg_set_voltage,
Patches currently in stable-queue which might be from srinivas.kandagatla@linaro.org are
queue-4.6/regulator-qcom_smd-add-regulator-ops-for-pm8941-lnldo.patch
queue-4.6/regulator-qcom_smd-add-list_voltage-callback.patch
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Patch "regulator: qcom_smd: add list_voltage callback" has been added to the 4.6-stable tree
2016-07-11 23:39 Patch "regulator: qcom_smd: add list_voltage callback" has been added to the 4.6-stable tree gregkh
@ 2016-07-12 0:26 ` Mark Brown
2016-07-12 2:09 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2016-07-12 0:26 UTC (permalink / raw)
To: gregkh; +Cc: srinivas.kandagatla, stable, stable-commits
[-- Attachment #1: Type: text/plain, Size: 883 bytes --]
On Mon, Jul 11, 2016 at 04:39:10PM -0700, gregkh@linuxfoundation.org wrote:
>
> This is a note to let you know that I've just added the patch titled
>
> regulator: qcom_smd: add list_voltage callback
>
> to the 4.6-stable tree which can be found at:
> http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
>
> The filename of the patch is:
> regulator-qcom_smd-add-list_voltage-callback.patch
> and it can be found in the queue-4.6 subdirectory.
There's a subsequent patch, 43160ffd12 (regulator: qcom_smd: Remove
list_voltage callback for rpm_smps_ldo_ops_fixed) which is also needed
for some of the users (this was only reported to me a couple of hours
ago so I've still not sent that patch to Linus yet, should happen
tomorrow). That looks like a cleanup but in fact fixes some booting
issues that some devices see.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Patch "regulator: qcom_smd: add list_voltage callback" has been added to the 4.6-stable tree
2016-07-12 0:26 ` Mark Brown
@ 2016-07-12 2:09 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2016-07-12 2:09 UTC (permalink / raw)
To: Mark Brown; +Cc: srinivas.kandagatla, stable, stable-commits
On Tue, Jul 12, 2016 at 01:26:34AM +0100, Mark Brown wrote:
> On Mon, Jul 11, 2016 at 04:39:10PM -0700, gregkh@linuxfoundation.org wrote:
> >
> > This is a note to let you know that I've just added the patch titled
> >
> > regulator: qcom_smd: add list_voltage callback
> >
> > to the 4.6-stable tree which can be found at:
> > http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
> >
> > The filename of the patch is:
> > regulator-qcom_smd-add-list_voltage-callback.patch
> > and it can be found in the queue-4.6 subdirectory.
>
> There's a subsequent patch, 43160ffd12 (regulator: qcom_smd: Remove
> list_voltage callback for rpm_smps_ldo_ops_fixed) which is also needed
> for some of the users (this was only reported to me a couple of hours
> ago so I've still not sent that patch to Linus yet, should happen
> tomorrow). That looks like a cleanup but in fact fixes some booting
> issues that some devices see.
Ok, if it lands tomorrow or so, that should be fine, I'm not counting on
doing a stable release for the next few days at the earliest.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-07-12 2:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 23:39 Patch "regulator: qcom_smd: add list_voltage callback" has been added to the 4.6-stable tree gregkh
2016-07-12 0:26 ` Mark Brown
2016-07-12 2:09 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox