#include "thermal_core.h"
 
-static int of_thermal_set_trip_hyst(struct thermal_zone_device *tz, int trip,
-                                   int hyst)
-{
-       if (trip >= tz->num_trips || trip < 0)
-               return -EDOM;
-
-       /* thermal framework should take care of data->mask & (1 << trip) */
-       tz->trips[trip].hysteresis = hyst;
-
-       return 0;
-}
-
 static int of_thermal_get_crit_temp(struct thermal_zone_device *tz,
                                    int *temp)
 {
                goto out_kfree_trips;
        }
 
-       of_ops->set_trip_hyst = of_ops->set_trip_hyst ? : of_thermal_set_trip_hyst;
        of_ops->get_crit_temp = of_ops->get_crit_temp ? : of_thermal_get_crit_temp;
        of_ops->bind = thermal_of_bind;
        of_ops->unbind = thermal_of_unbind;