Lines Matching refs:param
34 const struct rt_regulator_param *param; in rt_regulator_register() local
36 if (!reg_np || !reg_np->dev || !reg_np->param || !reg_np->ops) in rt_regulator_register()
47 param = reg_np->param; in rt_regulator_register()
58 if (param->boot_on || param->always_on) in rt_regulator_register()
86 if (!(reg_np->param->boot_on || reg_np->param->always_on)) in rt_regulator_unregister()
174 if (reg_np->param->enable_delay) in regulator_get_enable_time()
176 return reg_np->param->enable_delay; in regulator_get_enable_time()
289 if (reg_np->param->off_on_delay) in regulator_disable()
291 regulator_delay(reg_np->param->off_on_delay); in regulator_disable()
389 const struct rt_regulator_param *param; in rt_regulator_is_supported_voltage() local
393 param = reg->reg_np->param; in rt_regulator_is_supported_voltage()
395 if (!param) in rt_regulator_is_supported_voltage()
400 return param->min_uvolt <= min_uvolt && param->max_uvolt >= max_uvolt; in rt_regulator_is_supported_voltage()