Lines Matching refs:regulator
7 void rust_helper_regulator_put(struct regulator *regulator) in rust_helper_regulator_put() argument
9 regulator_put(regulator); in rust_helper_regulator_put()
12 int rust_helper_regulator_set_voltage(struct regulator *regulator, int min_uV, in rust_helper_regulator_set_voltage() argument
15 return regulator_set_voltage(regulator, min_uV, max_uV); in rust_helper_regulator_set_voltage()
18 int rust_helper_regulator_get_voltage(struct regulator *regulator) in rust_helper_regulator_get_voltage() argument
20 return regulator_get_voltage(regulator); in rust_helper_regulator_get_voltage()
23 struct regulator *rust_helper_regulator_get(struct device *dev, const char *id) in rust_helper_regulator_get()
28 int rust_helper_regulator_enable(struct regulator *regulator) in rust_helper_regulator_enable() argument
30 return regulator_enable(regulator); in rust_helper_regulator_enable()
33 int rust_helper_regulator_disable(struct regulator *regulator) in rust_helper_regulator_disable() argument
35 return regulator_disable(regulator); in rust_helper_regulator_disable()
38 int rust_helper_regulator_is_enabled(struct regulator *regulator) in rust_helper_regulator_is_enabled() argument
40 return regulator_is_enabled(regulator); in rust_helper_regulator_is_enabled()