Re: [PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-15 Thread Matthias Kaehlcke
El Sun, May 14, 2017 at 07:16:52PM +0900 Mark Brown ha dit: > On Mon, May 01, 2017 at 11:37:15AM -0700, Matthias Kaehlcke wrote: > > > else if (rdev->constraints->settling_time) > > return rdev->constraints->settling_time; > > + else if (rdev->constraints->settling_time_up && >

Re: [PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-15 Thread Matthias Kaehlcke
El Sun, May 14, 2017 at 07:16:52PM +0900 Mark Brown ha dit: > On Mon, May 01, 2017 at 11:37:15AM -0700, Matthias Kaehlcke wrote: > > > else if (rdev->constraints->settling_time) > > return rdev->constraints->settling_time; > > + else if (rdev->constraints->settling_time_up && >

Re: [PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-15 Thread Mark Brown
On Mon, May 01, 2017 at 11:37:15AM -0700, Matthias Kaehlcke wrote: > else if (rdev->constraints->settling_time) > return rdev->constraints->settling_time; > + else if (rdev->constraints->settling_time_up && > + (new_uV > old_uV)) > + return

Re: [PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-15 Thread Mark Brown
On Mon, May 01, 2017 at 11:37:15AM -0700, Matthias Kaehlcke wrote: > else if (rdev->constraints->settling_time) > return rdev->constraints->settling_time; > + else if (rdev->constraints->settling_time_up && > + (new_uV > old_uV)) > + return

Re: [PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-02 Thread Laxman Dewangan
On Tuesday 02 May 2017 12:07 AM, Matthias Kaehlcke wrote: Some regulators have different settling times for voltage increases and decreases. To avoid a time penalty on the faster transition allow for different settings for up- and downward transitions. Signed-off-by: Matthias Kaehlcke

Re: [PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-02 Thread Laxman Dewangan
On Tuesday 02 May 2017 12:07 AM, Matthias Kaehlcke wrote: Some regulators have different settling times for voltage increases and decreases. To avoid a time penalty on the faster transition allow for different settings for up- and downward transitions. Signed-off-by: Matthias Kaehlcke ---

[PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-01 Thread Matthias Kaehlcke
Some regulators have different settling times for voltage increases and decreases. To avoid a time penalty on the faster transition allow for different settings for up- and downward transitions. Signed-off-by: Matthias Kaehlcke --- Changes in v2: - Don't remove settling_time

[PATCH v2 2/2] regulator: Allow for asymmetric settling times

2017-05-01 Thread Matthias Kaehlcke
Some regulators have different settling times for voltage increases and decreases. To avoid a time penalty on the faster transition allow for different settings for up- and downward transitions. Signed-off-by: Matthias Kaehlcke --- Changes in v2: - Don't remove settling_time property - Split DT