Lines Matching defs:next_target
42 unsigned long next_target;
47 * cdev in use to determine the next_target.
50 next_target = instance->target;
55 next_target = (cur_state + 1) >= instance->upper ?
60 next_target = THERMAL_NO_TARGET;
63 return next_target;
69 next_target = cur_state < instance->upper ?
71 if (next_target < instance->lower)
72 next_target = instance->lower;
77 next_target = instance->upper;
82 next_target = THERMAL_NO_TARGET;
85 next_target = cur_state - 1;
86 if (next_target > instance->upper)
87 next_target = instance->upper;
94 next_target = THERMAL_NO_TARGET;
96 next_target = instance->lower;
102 return next_target;