Revert "CHROMIUM: thermal: of: Add support for hardware-tracked trip points"
[firefly-linux-kernel-4.4.55.git] / include / linux / thermal.h
index 9ac210234084f5120551eb5ccb95121d3be94ebf..fcaab873b94f9a3b51f2f46a8d02b0b3b57589db 100644 (file)
@@ -333,14 +333,12 @@ struct thermal_genl_event {
  * @get_trend: a pointer to a function that reads the sensor temperature trend.
  * @set_emul_temp: a pointer to a function that sets sensor emulated
  *                temperature.
- * @set_trips: a pointer to a function that set low/high trip temperature.
  */
 struct thermal_zone_of_device_ops {
        int (*get_temp)(void *, int *);
        int (*get_trend)(void *, long *);
        int (*set_emul_temp)(void *, int);
        int (*set_trip_temp)(void *, int, int);
-       int (*set_trips)(void *, int, int);
 };
 
 /**