return init_common(priv);
 }
 
+static int __init init_9607(struct tsens_priv *priv)
+{
+       int i;
+
+       for (i = 0; i < priv->num_sensors; ++i)
+               priv->sensor[i].slope = 3000;
+
+       return init_common(priv);
+}
+
 /* v0.1: 8226, 8916, 8939, 8974, 9607 */
 
 static struct tsens_features tsens_v0_1_feat = {
        .fields = tsens_v0_1_regfields,
 };
 
+static const struct tsens_ops ops_9607 = {
+       .init           = init_9607,
+       .calibrate      = tsens_calibrate_common,
+       .get_temp       = get_temp_common,
+};
+
 struct tsens_plat_data data_9607 = {
        .num_sensors    = 5,
-       .ops            = &ops_v0_1,
+       .ops            = &ops_9607,
        .feat           = &tsens_v0_1_feat,
        .fields = tsens_v0_1_regfields,
 };