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()
452 * If we fail to disable DVDD, don't bother in trying IOVDD. We in adau7118_regulator_disable()
453 * actually don't want to be left in the situation where DVDD in adau7118_regulator_disable()
456 ret = regulator_disable(st->dvdd); in adau7118_regulator_disable()
472 st->dvdd = devm_regulator_get(st->dev, "dvdd"); in adau7118_regulator_setup()
473 if (IS_ERR(st->dvdd)) { in adau7118_regulator_setup()
474 dev_err(st->dev, "Could not get dvdd: %ld\n", in adau7118_regulator_setup()
475 PTR_ERR(st->dvdd)); in adau7118_regulator_setup()
476 return PTR_ERR(st->dvdd); in adau7118_regulator_setup()