On Thu, Aug 06, 2026 at 04:12:44PM +0200, Andrew Lunn wrote:
quoted
+static const char *const rtl8365mb_supplies[] = {
+ "avddh", "avddl", "dvddio", "dvddio1", "dvddl", "pllvddl", NULL,
+};
+
quoted
+static int rtl83xx_enable_supplies(struct device *dev,
+ const char *const *supplies)
+{
+ int i, ret, count = 0;
+
+ for (i = 0; supplies && supplies[i]; i++) {
+ ret = devm_regulator_get_enable_optional(dev, supplies[i]);
+ if (ret == -ENODEV)
+ continue;
+ if (ret)
+ return dev_err_probe(dev, ret, "failed to enable %s supply\n",
+ supplies[i]);
+ count++;
+ }
+
I've never used it, i've no idea if it is applicable, but there does
appear to be _bulk_ calls in the regulator API, maybe which is similar
to the clk _bulk_ API?
Ack, in the first iteration of this patch we was using
devm_regulator_bulk_get_enable(). But it would print warnings on
existing boards without regulators in devicetree. Currently there are no
bulk helpers with _optional regulators, so I reworked it to hand made
optional bulk support.
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |