Lines Matching defs:vddd
102 /* vddd is optional supply */
1286 * 1. vddd provided by external or not
1291 int vddd;
1305 vddd = (sgtl5000->num_supplies > VDDD)
1311 vddd = vddd / 1000;
1313 if (vdda <= 0 || vddio <= 0 || vddd < 0) {
1320 if (vdda > 3600 || vddio > 3600 || vddd > 1980) {
1322 "exceed max voltage vdda %dmV vddio %dmV vddd %dmV\n",
1323 vdda, vddio, vddd);
1424 struct regulator *vddd;
1430 vddd = regulator_get_optional(&client->dev, "VDDD");
1431 if (IS_ERR(vddd)) {
1433 if (PTR_ERR(vddd) == -EPROBE_DEFER)
1437 regulator_put(vddd);