summaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorAly Hirani <ahirani@nvidia.com>2014-09-11 19:21:39 -0400
committerNicolin Chen <nicolinc@nvidia.com>2017-08-14 21:38:52 -0400
commit61a336659decd5b8ba580d827bc824a4b3d18b78 (patch)
tree439e65e6795d84640795e0f7e2ea0d2e86e8595b /drivers/misc
parent2004e812221f70107b108db9b81b7b20084da575 (diff)
tegra: Add a new line at the end of therm_fan_est
This gets printed everytime we change the fan speed. Add the missing new line to the print Change-Id: I3ad0a0dca7144a33e78388bd019050c1abf6f34f Signed-off-by: Aly Hirani <ahirani@nvidia.com> Reviewed-on: http://git-master/r/498043
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/therm_fan_est.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/therm_fan_est.c b/drivers/misc/therm_fan_est.c
index 73c082ee0..7f8785b7e 100644
--- a/drivers/misc/therm_fan_est.c
+++ b/drivers/misc/therm_fan_est.c
@@ -108,7 +108,7 @@ static void therm_fan_est_work_func(struct work_struct *work)
108 if (!((trip_index - 1) % 2) || (!est->current_trip_index) || 108 if (!((trip_index - 1) % 2) || (!est->current_trip_index) ||
109 ((trip_index - est->current_trip_index) >= 2) || 109 ((trip_index - est->current_trip_index) >= 2) ||
110 ((trip_index - est->current_trip_index) <= -2)) { 110 ((trip_index - est->current_trip_index) <= -2)) {
111 pr_info("%s, cur_temp:%ld, cur_trip_index:%d", 111 pr_info("%s, cur_temp:%ld, cur_trip_index:%d\n",
112 __func__, est->cur_temp, est->current_trip_index); 112 __func__, est->cur_temp, est->current_trip_index);
113 thermal_zone_device_update(est->thz); 113 thermal_zone_device_update(est->thz);
114 } 114 }