Lines Matching defs:ana
53 struct regulator *ana;
162 ret = regulator_get_voltage(tse850->ana);
202 * the ana regulator is supplied by the system 12V voltage and
204 * voltage to be passed through the regulator. Also, the ana
214 ret = regulator_set_voltage(tse850->ana, uV, uV);
397 tse850->ana = devm_regulator_get(dev, "axentia,ana");
398 if (IS_ERR(tse850->ana)) {
399 if (PTR_ERR(tse850->ana) != -EPROBE_DEFER)
400 dev_err(dev, "failed to get 'ana' regulator\n");
401 return PTR_ERR(tse850->ana);
404 ret = regulator_enable(tse850->ana);
406 dev_err(dev, "failed to enable the 'ana' regulator\n");
419 regulator_disable(tse850->ana);
429 regulator_disable(tse850->ana);