Re: [PATCH v3 4/6] drm/msm/dsi: Use the new regulator bulk feature to specify the load

2022-08-03 Thread Abhinav Kumar
On 8/2/2022 3:37 PM, Douglas Anderson wrote: As of commit 6eabfc018e8d ("regulator: core: Allow specifying an initial load w/ the bulk API") we can now specify the initial load in the bulk data rather than having to manually call regulator_set_load() on each regulator. Let's use it.

Re: [PATCH v3 4/6] drm/msm/dsi: Use the new regulator bulk feature to specify the load

2022-08-03 Thread Doug Anderson
Hi, On Wed, Aug 3, 2022 at 12:12 AM Dmitry Baryshkov wrote: > > On 03/08/2022 01:37, Douglas Anderson wrote: > > As of commit 6eabfc018e8d ("regulator: core: Allow specifying an > > initial load w/ the bulk API") we can now specify the initial load in > > the bulk data rather than having to

Re: [PATCH v3 4/6] drm/msm/dsi: Use the new regulator bulk feature to specify the load

2022-08-03 Thread Dmitry Baryshkov
On 03/08/2022 01:37, Douglas Anderson wrote: As of commit 6eabfc018e8d ("regulator: core: Allow specifying an initial load w/ the bulk API") we can now specify the initial load in the bulk data rather than having to manually call regulator_set_load() on each regulator. Let's use it.

[PATCH v3 4/6] drm/msm/dsi: Use the new regulator bulk feature to specify the load

2022-08-02 Thread Douglas Anderson
As of commit 6eabfc018e8d ("regulator: core: Allow specifying an initial load w/ the bulk API") we can now specify the initial load in the bulk data rather than having to manually call regulator_set_load() on each regulator. Let's use it. Signed-off-by: Douglas Anderson --- Changes in v3: -