Lines Matching defs:vccio
50 struct regulator *vccio;
472 ret = regulator_enable(ctx->vccio);
474 dev_err(ctx->dev, "Failed to enable vccio: %d\n", ret);
568 ret = regulator_disable(ctx->vccio);
570 dev_err(ctx->dev, "Failed to disable vccio: %d\n", ret);
635 ctx->vccio = devm_regulator_get(dev, "vccio");
636 if (IS_ERR(ctx->vccio))
637 return dev_err_probe(dev, PTR_ERR(ctx->vccio),
638 "Failed to get supply 'vccio'\n");