Re: [PATCH v5 09/14] mfd: lm3533: Add support for VIN power supply

From: Svyatoslav Ryhel

Date: Tue Jul 14 2026 - 10:00:35 EST


пт, 3 лип. 2026 р. о 14:09 Johan Hovold <johan@xxxxxxxxxx> пише:
>
> On Wed, Jun 17, 2026 at 11:00:26AM +0300, Svyatoslav Ryhel wrote:
> > Add support for 2.7V-5.5V VIN power supply.
> >
> > Signed-off-by: Svyatoslav Ryhel <clamor95@xxxxxxxxx>
>
> > -static void lm3533_enable(struct lm3533 *lm3533)
> > +static int lm3533_enable(struct lm3533 *lm3533)
> > {
> > + int ret;
> > +
> > + ret = regulator_enable(lm3533->vin_supply);
> > + if (ret) {
> > + dev_err(lm3533->dev, "failed to enable vin power supply\n");
> > + return ret;
> > + }
> > +
>
> No delay needed?
>

I have not found any in the datasheet, if you are aware of the delay
duration needed please elaborate.

> > gpiod_set_value(lm3533->hwen, 1);
> > +
> > + return 0;
> > }
>
> Johan