Lines Matching refs:vbus
42 struct regulator *vbus;
52 if (priv->vbus)
53 ret = regulator_enable(priv->vbus);
62 if (priv->vbus)
63 regulator_disable(priv->vbus);
140 priv->vbus = devm_regulator_get_optional(dev, "vbus");
141 if (IS_ERR(priv->vbus)) {
142 if (PTR_ERR(priv->vbus) == -EPROBE_DEFER) {
143 ret = PTR_ERR(priv->vbus);
146 priv->vbus = NULL;