Searched refs:uA (Results 1 - 4 of 4) sorted by relevance

/u-boot/include/power/
H A Dregulator.h225 * @uA - set the output current [micro Amps]
226 * @return output value [uA] on success or negative errno if fail.
229 int (*set_current)(struct udevice *dev, int uA);
332 * Return: - positive output current [uA] on success or negative errno if fail.
340 * @uA - set the output current [micro Amps]
343 int regulator_set_current(struct udevice *dev, int uA);
592 static inline int regulator_set_current(struct udevice *dev, int uA) argument
/u-boot/drivers/power/regulator/
H A Dsandbox.c224 static int buck_set_current(struct udevice *dev, int uA) argument
231 buck_current_range, uA);
300 static int ldo_set_current(struct udevice *dev, int uA) argument
307 ldo_current_range, uA);
H A Dda9063.c294 static int buck_set_current_limit(struct udevice *dev, int uA) argument
300 if (uA < info->min_uA || uA > info->max_uA)
303 val = (uA - info->min_uA) / info->step_uA;
H A Dregulator-uclass.c135 int regulator_set_current(struct udevice *dev, int uA) argument
141 if (uc_pdata->min_uA != -ENODATA && uA < uc_pdata->min_uA)
143 if (uc_pdata->max_uA != -ENODATA && uA > uc_pdata->max_uA)
149 return ops->set_current(dev, uA);
359 printf("; set %d uA", uc_pdata->min_uA);

Completed in 51 milliseconds