Lines Matching full:pvdd
158 struct regulator *pvdd; member
482 tas5805m->pvdd = devm_regulator_get(dev, "pvdd"); in tas5805m_i2c_probe()
483 if (IS_ERR(tas5805m->pvdd)) { in tas5805m_i2c_probe()
484 dev_err(dev, "failed to get pvdd supply: %ld\n", in tas5805m_i2c_probe()
485 PTR_ERR(tas5805m->pvdd)); in tas5805m_i2c_probe()
486 return PTR_ERR(tas5805m->pvdd); in tas5805m_i2c_probe()
537 * after PVDD is applied, or else the ADR pin is sampled in tas5805m_i2c_probe()
544 ret = regulator_enable(tas5805m->pvdd); in tas5805m_i2c_probe()
546 dev_err(dev, "failed to enable pvdd: %d\n", ret); in tas5805m_i2c_probe()
565 regulator_disable(tas5805m->pvdd); in tas5805m_i2c_probe()
581 regulator_disable(tas5805m->pvdd); in tas5805m_i2c_remove()