Lines Matching refs:vbus
59 struct regulator *vbus;
124 if (priv->vbus) {
125 ret = regulator_enable(priv->vbus);
146 if (priv->vbus)
147 regulator_disable(priv->vbus);
267 priv->vbus = devm_regulator_get_optional(dev, "vbus");
268 if (IS_ERR(priv->vbus)) {
269 if (PTR_ERR(priv->vbus) == -EPROBE_DEFER)
270 return PTR_ERR(priv->vbus);
271 priv->vbus = NULL;