Lines Matching refs:vbus
73 struct regulator *vbus;
220 if (priv->vbus) {
221 ret = regulator_enable(priv->vbus);
242 if (priv->vbus)
243 regulator_disable(priv->vbus);
376 priv->vbus = devm_regulator_get_optional(dev, "vbus");
377 if (IS_ERR(priv->vbus)) {
378 if (PTR_ERR(priv->vbus) == -EPROBE_DEFER)
379 return PTR_ERR(priv->vbus);
380 priv->vbus = NULL;