summaryrefslogtreecommitdiff
path: root/common/temp_sensor.c
diff options
context:
space:
mode:
authorVijay Hiremath <vijay.p.hiremath@intel.com>2021-01-20 22:37:30 -0800
committerCommit Bot <commit-bot@chromium.org>2021-02-08 18:37:13 +0000
commit2939dd85315f329f85792f6a8a6ef7db8f5546ba (patch)
tree62dc425432ce4925dca1a29566aa61beca71d711 /common/temp_sensor.c
parent25b7400dcb42e54e27dabfba60d35f46dab41097 (diff)
downloadchrome-ec-2939dd85315f329f85792f6a8a6ef7db8f5546ba.tar.gz
thermal: Print temperature sensor values before shutting down AP
On a thermal shutdown print temperature sensor values before shutting down AP so that it is easy to track which sensor is high. BUG=none BRANCH=none TEST=Tested on Terrador, able to print temperature sensor values before chipset shutdown is called. Signed-off-by: Vijay Hiremath <vijay.p.hiremath@intel.com> Change-Id: I02b59d0409c275809af39dee4f409774c55e4462 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2639151 Reviewed-by: Sooraj Govindan <sooraj.govindan@intel.com> Reviewed-by: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'common/temp_sensor.c')
-rw-r--r--common/temp_sensor.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/temp_sensor.c b/common/temp_sensor.c
index 0f687bb2a2..5428b84949 100644
--- a/common/temp_sensor.c
+++ b/common/temp_sensor.c
@@ -97,7 +97,8 @@ DECLARE_HOOK(HOOK_INIT, temp_sensor_init, HOOK_PRIO_DEFAULT);
/*****************************************************************************/
/* Console commands */
-static int command_temps(int argc, char **argv)
+#ifdef CONFIG_CMD_TEMP_SENSOR
+int console_command_temps(int argc, char **argv)
{
int t, i;
int rv, rv1 = EC_SUCCESS;
@@ -135,9 +136,10 @@ static int command_temps(int argc, char **argv)
return rv1;
}
-DECLARE_CONSOLE_COMMAND(temps, command_temps,
+DECLARE_CONSOLE_COMMAND(temps, console_command_temps,
NULL,
"Print temp sensors");
+#endif
/*****************************************************************************/
/* Host commands */