struct regulator_desc — Regulator descriptor
struct regulator_desc { const char * name; int id; unsigned n_voltages; struct regulator_ops * ops; int irq; enum regulator_type type; struct module * owner; };
Identifying name for the regulator.
Numerical identifier for the regulator.
Number of selectors available for ops.list_voltage
.
Regulator operations table.
Interrupt number for the regulator.
Indicates if the regulator is a voltage or current regulator.
Module providing the regulator, used for refcounting.