return IRQ_HANDLED;
 }
 
-static int da9062_thermal_get_trip_type(struct thermal_zone_device *z,
-                                       int trip,
-                                       enum thermal_trip_type *type)
-{
-       struct da9062_thermal *thermal = z->devdata;
-
-       switch (trip) {
-       case 0:
-               *type = THERMAL_TRIP_HOT;
-               break;
-       default:
-               dev_err(thermal->dev,
-                       "Driver does not support more than 1 trip-wire\n");
-               return -EINVAL;
-       }
-
-       return 0;
-}
-
-static int da9062_thermal_get_trip_temp(struct thermal_zone_device *z,
-                                       int trip,
-                                       int *temp)
-{
-       struct da9062_thermal *thermal = z->devdata;
-
-       switch (trip) {
-       case 0:
-               *temp = DA9062_MILLI_CELSIUS(125);
-               break;
-       default:
-               dev_err(thermal->dev,
-                       "Driver does not support more than 1 trip-wire\n");
-               return -EINVAL;
-       }
-
-       return 0;
-}
-
 static int da9062_thermal_get_temp(struct thermal_zone_device *z,
                                   int *temp)
 {
 
 static struct thermal_zone_device_ops da9062_thermal_ops = {
        .get_temp       = da9062_thermal_get_temp,
-       .get_trip_type  = da9062_thermal_get_trip_type,
-       .get_trip_temp  = da9062_thermal_get_trip_temp,
+};
+
+static struct thermal_trip trips[] = {
+       { .temperature = DA9062_MILLI_CELSIUS(125), .type = THERMAL_TRIP_HOT },
 };
 
 static const struct da9062_thermal_config da9062_config = {
        INIT_DELAYED_WORK(&thermal->work, da9062_thermal_poll_on);
        mutex_init(&thermal->lock);
 
-       thermal->zone = thermal_zone_device_register(thermal->config->name,
-                                       1, 0, thermal,
-                                       &da9062_thermal_ops, NULL, pp_tmp,
-                                       0);
+       thermal->zone = thermal_zone_device_register_with_trips(thermal->config->name,
+                                                               trips, ARRAY_SIZE(trips), 0, thermal,
+                                                               &da9062_thermal_ops, NULL, pp_tmp,
+                                                               0);
        if (IS_ERR(thermal->zone)) {
                dev_err(&pdev->dev, "Cannot register thermal zone device\n");
                ret = PTR_ERR(thermal->zone);