Lines Matching defs:vcc
29 struct regulator *vcc;
89 ret = regulator_enable(thc63->vcc);
92 "Failed to enable regulator \"vcc\": %d\n", ret);
108 ret = regulator_disable(thc63->vcc);
111 "Failed to disable regulator \"vcc\": %d\n", ret);
205 thc63->vcc = devm_regulator_get_optional(thc63->dev, "vcc");
206 if (IS_ERR(thc63->vcc)) {
207 if (PTR_ERR(thc63->vcc) == -EPROBE_DEFER)
210 dev_err(thc63->dev, "Unable to get \"vcc\" supply: %ld\n",
211 PTR_ERR(thc63->vcc));
212 return PTR_ERR(thc63->vcc);