Lines Matching full:ana
51 struct regulator *ana; member
160 ret = regulator_get_voltage(tse850->ana); in tse850_get_ana()
200 * the ana regulator is supplied by the system 12V voltage and in tse850_put_ana()
202 * voltage to be passed through the regulator. Also, the ana in tse850_put_ana()
212 ret = regulator_set_voltage(tse850->ana, uV, uV); in tse850_put_ana()
250 SOC_DAPM_ENUM_EXT("ANA", ana_enum, tse850_get_ana, tse850_put_ana);
389 tse850->ana = devm_regulator_get(dev, "axentia,ana"); in tse850_probe()
390 if (IS_ERR(tse850->ana)) in tse850_probe()
391 return dev_err_probe(dev, PTR_ERR(tse850->ana), in tse850_probe()
392 "failed to get 'ana' regulator\n"); in tse850_probe()
394 ret = regulator_enable(tse850->ana); in tse850_probe()
396 dev_err(dev, "failed to enable the 'ana' regulator\n"); in tse850_probe()
409 regulator_disable(tse850->ana); in tse850_probe()
419 regulator_disable(tse850->ana); in tse850_remove()