Re: [PATCH 3/4] opp: Reused enabled flag and remove regulator_enabled

2020-08-20 Thread Viresh Kumar
On 15-08-20, 00:55, Stephen Boyd wrote: > Quoting Viresh Kumar (2020-08-12 21:29:00) > > diff --git a/drivers/opp/core.c b/drivers/opp/core.c > > index e8882e7fd8a5..5f5da257f58a 100644 > > --- a/drivers/opp/core.c > > +++ b/drivers/opp/core.c > > @@ -703,12 +703,10 @@ static int

Re: [PATCH 3/4] opp: Reused enabled flag and remove regulator_enabled

2020-08-18 Thread Rajendra Nayak
On 8/13/2020 9:59 AM, Viresh Kumar wrote: The common "enabled" flag can be used here instead of "regulator_enabled" now. Signed-off-by: Viresh Kumar --- drivers/opp/core.c | 13 +++-- drivers/opp/opp.h | 2 -- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git

Re: [PATCH 3/4] opp: Reused enabled flag and remove regulator_enabled

2020-08-15 Thread Stephen Boyd
Quoting Viresh Kumar (2020-08-12 21:29:00) > The common "enabled" flag can be used here instead of > "regulator_enabled" now. > > Signed-off-by: Viresh Kumar Why not put this before the other patch? And mention that it will be reused in another place soon? Then the previous patch won't look

[PATCH 3/4] opp: Reused enabled flag and remove regulator_enabled

2020-08-12 Thread Viresh Kumar
The common "enabled" flag can be used here instead of "regulator_enabled" now. Signed-off-by: Viresh Kumar --- drivers/opp/core.c | 13 +++-- drivers/opp/opp.h | 2 -- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/drivers/opp/core.c b/drivers/opp/core.c index