duty_cycle_table   32 drivers/regulator/pwm-regulator.c 	struct pwm_voltages *duty_cycle_table;
duty_cycle_table   65 drivers/regulator/pwm-regulator.c 		if (dutycycle == drvdata->duty_cycle_table[i].dutycycle) {
duty_cycle_table   91 drivers/regulator/pwm-regulator.c 			drvdata->duty_cycle_table[selector].dutycycle, 100);
duty_cycle_table  112 drivers/regulator/pwm-regulator.c 	return drvdata->duty_cycle_table[selector].uV;
duty_cycle_table  257 drivers/regulator/pwm-regulator.c 	struct pwm_voltages *duty_cycle_table;
duty_cycle_table  263 drivers/regulator/pwm-regulator.c 	if ((length < sizeof(*duty_cycle_table)) ||
duty_cycle_table  264 drivers/regulator/pwm-regulator.c 	    (length % sizeof(*duty_cycle_table))) {
duty_cycle_table  270 drivers/regulator/pwm-regulator.c 	duty_cycle_table = devm_kzalloc(&pdev->dev, length, GFP_KERNEL);
duty_cycle_table  271 drivers/regulator/pwm-regulator.c 	if (!duty_cycle_table)
duty_cycle_table  275 drivers/regulator/pwm-regulator.c 					 (u32 *)duty_cycle_table,
duty_cycle_table  283 drivers/regulator/pwm-regulator.c 	drvdata->duty_cycle_table	= duty_cycle_table;
duty_cycle_table  285 drivers/regulator/pwm-regulator.c 	drvdata->desc.n_voltages	= length / sizeof(*duty_cycle_table);