aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanjay Singh Rawat <sanjay.rawat@linaro.org>2014-07-08 16:50:56 +0200
committerSanjay Singh Rawat <sanjay.rawat@linaro.org>2014-07-08 16:51:44 +0200
commit3ab64064ed5cf12f40f451279ed205fa5c6fa81d (patch)
tree6e26c936afd46c3826f4d5cac663af8d4a9492f7
parent8b6ad7c259e327f3403364ef067119646f18dc42 (diff)
thermal: change result string to standard for check_valid_temp
changing as required by lava Signed-off-by: Sanjay Singh Rawat <sanjay.rawat@linaro.org>
-rw-r--r--include/thermal_functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/thermal_functions.sh b/include/thermal_functions.sh
index 0c836c5..f3c4783 100644
--- a/include/thermal_functions.sh
+++ b/include/thermal_functions.sh
@@ -43,11 +43,11 @@ check_valid_temp() {
log_begin "checking $descr"
if [ $temp_val -gt 0 ]; then
- log_end "pass"
+ log_end "Ok"
return 0
fi
- log_end "fail"
+ log_end "Err"
return 1
}