Lines Matching defs:rpdata
348 struct tps65090_regulator_plat_data *rpdata;
351 rpdata = ®_pdata[idx];
360 rpdata->reg_init_data = ri_data;
361 rpdata->enable_ext_control = of_property_read_bool(np,
363 if (rpdata->enable_ext_control) {
373 rpdata->gpiod = devm_fwnode_gpiod_get(
379 if (PTR_ERR(rpdata->gpiod) == -ENOENT) {
382 rpdata->gpiod = NULL;
383 } else if (IS_ERR(rpdata->gpiod))
384 return ERR_CAST(rpdata->gpiod);
388 &rpdata->overcurrent_wait) == 0)
389 rpdata->overcurrent_wait_valid = true;
391 tps65090_pdata->reg_pdata[idx] = rpdata;