summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/misc/therm_fan_est.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/therm_fan_est.c b/drivers/misc/therm_fan_est.c
index e0fdb0848..73fae60ab 100644
--- a/drivers/misc/therm_fan_est.c
+++ b/drivers/misc/therm_fan_est.c
@@ -107,7 +107,7 @@ static void therm_fan_est_work_func(struct work_struct *work)
107 if (!((trip_index - 1) % 2) || (!est->current_trip_index) || 107 if (!((trip_index - 1) % 2) || (!est->current_trip_index) ||
108 ((trip_index - est->current_trip_index) >= 2) || 108 ((trip_index - est->current_trip_index) >= 2) ||
109 ((trip_index - est->current_trip_index) <= -2)) { 109 ((trip_index - est->current_trip_index) <= -2)) {
110 pr_info("%s, cur_temp:%ld, cur_trip_index:%d\n", 110 pr_debug("%s, cur_temp:%ld, cur_trip_index:%d\n",
111 __func__, est->cur_temp, est->current_trip_index); 111 __func__, est->cur_temp, est->current_trip_index);
112 thermal_zone_device_update(est->thz); 112 thermal_zone_device_update(est->thz);
113 } 113 }
@@ -635,7 +635,7 @@ static int therm_fan_est_suspend(struct platform_device *pdev,
635 if (!est) 635 if (!est)
636 return -EINVAL; 636 return -EINVAL;
637 637
638 pr_info("therm-fan-est: %s, cur_temp:%ld", __func__, est->cur_temp); 638 pr_debug("therm-fan-est: %s, cur_temp:%ld", __func__, est->cur_temp);
639 cancel_delayed_work(&est->therm_fan_est_work); 639 cancel_delayed_work(&est->therm_fan_est_work);
640 est->current_trip_index = 0; 640 est->current_trip_index = 0;
641 641
@@ -648,7 +648,7 @@ static int therm_fan_est_resume(struct platform_device *pdev)
648 648
649 if (!est) 649 if (!est)
650 return -EINVAL; 650 return -EINVAL;
651 pr_info("therm-fan-est: %s, cur_temp:%ld", __func__, est->cur_temp); 651 pr_debug("therm-fan-est: %s, cur_temp:%ld", __func__, est->cur_temp);
652 652
653 queue_delayed_work(est->workqueue, 653 queue_delayed_work(est->workqueue,
654 &est->therm_fan_est_work, 654 &est->therm_fan_est_work,