Lines Matching full:dvdd
39 struct regulator *dvdd; member
347 /* there's no timing constraints before enabling dvdd */ in adau7118_set_bias_level()
348 ret = regulator_enable(st->dvdd); in adau7118_set_bias_level()
364 ret = regulator_disable(st->dvdd); in adau7118_set_bias_level()
453 * If we fail to disable DVDD, don't bother in trying IOVDD. We in adau7118_regulator_disable()
454 * actually don't want to be left in the situation where DVDD in adau7118_regulator_disable()
457 ret = regulator_disable(st->dvdd); in adau7118_regulator_disable()
473 st->dvdd = devm_regulator_get(st->dev, "dvdd"); in adau7118_regulator_setup()
474 if (IS_ERR(st->dvdd)) { in adau7118_regulator_setup()
475 dev_err(st->dev, "Could not get dvdd: %ld\n", in adau7118_regulator_setup()
476 PTR_ERR(st->dvdd)); in adau7118_regulator_setup()
477 return PTR_ERR(st->dvdd); in adau7118_regulator_setup()