All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 1/1] regulator: core: do not continue if selector match
@ 2020-11-13 17:56 ` Claudiu Beznea
  0 siblings, 0 replies; 4+ messages in thread
From: Claudiu Beznea @ 2020-11-13 17:56 UTC (permalink / raw)
  To: lgirdwood, broonie; +Cc: linux-kernel, linux-arm-kernel, Claudiu Beznea

Do not continue if selector has already been located.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
---

Changes in v4:
- this was part of patch series with title
  "regulator: mcp16502: add support for ramp delay" -> keep only this patch
  in series as the rest were applied
- rebased on top of current regulator/for-next

 drivers/regulator/core.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index f0da0053579c..216b0cbce199 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -4035,6 +4035,9 @@ int regulator_set_voltage_time(struct regulator *regulator,
 		if (i < rdev->desc->linear_min_sel)
 			continue;
 
+		if (old_sel >= 0 && new_sel >= 0)
+			break;
+
 		voltage = regulator_list_voltage(regulator, i);
 		if (voltage < 0)
 			return -EINVAL;
-- 
2.7.4


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

* [PATCH v4 1/1] regulator: core: do not continue if selector match
@ 2020-11-13 17:56 ` Claudiu Beznea
  0 siblings, 0 replies; 4+ messages in thread
From: Claudiu Beznea @ 2020-11-13 17:56 UTC (permalink / raw)
  To: lgirdwood, broonie; +Cc: linux-kernel, linux-arm-kernel, Claudiu Beznea

Do not continue if selector has already been located.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
---

Changes in v4:
- this was part of patch series with title
  "regulator: mcp16502: add support for ramp delay" -> keep only this patch
  in series as the rest were applied
- rebased on top of current regulator/for-next

 drivers/regulator/core.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index f0da0053579c..216b0cbce199 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -4035,6 +4035,9 @@ int regulator_set_voltage_time(struct regulator *regulator,
 		if (i < rdev->desc->linear_min_sel)
 			continue;
 
+		if (old_sel >= 0 && new_sel >= 0)
+			break;
+
 		voltage = regulator_list_voltage(regulator, i);
 		if (voltage < 0)
 			return -EINVAL;
-- 
2.7.4


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH v4 1/1] regulator: core: do not continue if selector match
  2020-11-13 17:56 ` Claudiu Beznea
@ 2020-11-13 18:41   ` Mark Brown
  -1 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2020-11-13 18:41 UTC (permalink / raw)
  To: Claudiu Beznea, lgirdwood; +Cc: linux-kernel, linux-arm-kernel

On Fri, 13 Nov 2020 19:56:04 +0200, Claudiu Beznea wrote:
> Do not continue if selector has already been located.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/1] regulator: core: do not continue if selector match
      commit: ab97800e088acf34d0014845ed93605dd5c1ea2a

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

* Re: [PATCH v4 1/1] regulator: core: do not continue if selector match
@ 2020-11-13 18:41   ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2020-11-13 18:41 UTC (permalink / raw)
  To: Claudiu Beznea, lgirdwood; +Cc: linux-kernel, linux-arm-kernel

On Fri, 13 Nov 2020 19:56:04 +0200, Claudiu Beznea wrote:
> Do not continue if selector has already been located.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/1] regulator: core: do not continue if selector match
      commit: ab97800e088acf34d0014845ed93605dd5c1ea2a

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-11-13 18:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13 17:56 [PATCH v4 1/1] regulator: core: do not continue if selector match Claudiu Beznea
2020-11-13 17:56 ` Claudiu Beznea
2020-11-13 18:41 ` Mark Brown
2020-11-13 18:41   ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.