next_target = clamp((cur_state + 1), instance->lower, instance->upper);
                }
                break;
-       case THERMAL_TREND_RAISE_FULL:
-               if (throttle)
-                       next_target = instance->upper;
-               break;
        case THERMAL_TREND_DROPPING:
                if (cur_state <= instance->lower) {
                        if (!throttle)
                        }
                }
                break;
-       case THERMAL_TREND_DROP_FULL:
-               if (cur_state == instance->lower) {
-                       if (!throttle)
-                               next_target = THERMAL_NO_TARGET;
-               } else
-                       next_target = instance->lower;
-               break;
        default:
                break;
        }
 
        THERMAL_TREND_STABLE, /* temperature is stable */
        THERMAL_TREND_RAISING, /* temperature is raising */
        THERMAL_TREND_DROPPING, /* temperature is dropping */
-       THERMAL_TREND_RAISE_FULL, /* apply highest cooling action */
-       THERMAL_TREND_DROP_FULL, /* apply lowest cooling action */
 };
 
 /* Thermal notification reason */