Lines Matching defs:new_data
2621 struct cpufreq_policy_data new_data;
2625 memcpy(&new_data.cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
2626 new_data.freq_table = policy->freq_table;
2627 new_data.cpu = policy->cpu;
2632 new_data.min = freq_qos_read_value(&policy->constraints, FREQ_QOS_MIN);
2633 new_data.max = freq_qos_read_value(&policy->constraints, FREQ_QOS_MAX);
2636 new_data.cpu, new_data.min, new_data.max);
2642 ret = cpufreq_driver->verify(&new_data);
2655 WRITE_ONCE(policy->max, __resolve_freq(policy, new_data.max,
2656 new_data.min, new_data.max,
2658 new_data.min = __resolve_freq(policy, new_data.min, new_data.min,
2659 new_data.max, CPUFREQ_RELATION_L);
2660 WRITE_ONCE(policy->min, new_data.min > policy->max ? policy->max : new_data.min);