}
 EXPORT_SYMBOL_GPL(of_thermal_get_trip_points);
 
-static int of_thermal_get_trip_type(struct thermal_zone_device *tz, int trip,
-                                   enum thermal_trip_type *type)
-{
-       if (trip >= tz->num_trips || trip < 0)
-               return -EDOM;
-
-       *type = tz->trips[trip].type;
-
-       return 0;
-}
-
-static int of_thermal_get_trip_temp(struct thermal_zone_device *tz, int trip,
-                                   int *temp)
-{
-       if (trip >= tz->num_trips || trip < 0)
-               return -EDOM;
-
-       *temp = tz->trips[trip].temperature;
-
-       return 0;
-}
-
-static int of_thermal_get_trip_hyst(struct thermal_zone_device *tz, int trip,
-                                   int *hyst)
-{
-       if (trip >= tz->num_trips || trip < 0)
-               return -EDOM;
-
-       *hyst = tz->trips[trip].hysteresis;
-
-       return 0;
-}
-
 static int of_thermal_set_trip_hyst(struct thermal_zone_device *tz, int trip,
                                    int hyst)
 {
                goto out_kfree_trips;
        }
 
-       of_ops->get_trip_type = of_ops->get_trip_type ? : of_thermal_get_trip_type;
-       of_ops->get_trip_temp = of_ops->get_trip_temp ? : of_thermal_get_trip_temp;
-       of_ops->get_trip_hyst = of_ops->get_trip_hyst ? : of_thermal_get_trip_hyst;
        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;