Lines Matching refs:pstate
93 struct pwm_state pstate; in pwm_regulator_set_voltage_sel() local
96 pwm_init_state(drvdata->pwm, &pstate); in pwm_regulator_set_voltage_sel()
97 pwm_set_relative_duty_cycle(&pstate, in pwm_regulator_set_voltage_sel()
100 ret = pwm_apply_state(drvdata->pwm, &pstate); in pwm_regulator_set_voltage_sel()
165 struct pwm_state pstate; in pwm_regulator_get_voltage() local
169 pwm_get_state(drvdata->pwm, &pstate); in pwm_regulator_get_voltage()
171 voltage = pwm_get_relative_duty_cycle(&pstate, duty_unit); in pwm_regulator_get_voltage()
202 struct pwm_state pstate; in pwm_regulator_set_voltage() local
207 pwm_init_state(drvdata->pwm, &pstate); in pwm_regulator_set_voltage()
228 pwm_set_relative_duty_cycle(&pstate, dutycycle, duty_unit); in pwm_regulator_set_voltage()
230 ret = pwm_apply_state(drvdata->pwm, &pstate); in pwm_regulator_set_voltage()