mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
ectool: Fix compilation warning
Was comparting a int16_t with 0x8000 leading to: error: comparison of constant 32768 with expression of ec-utils-0.0.1-r2377: type 'int16_t' (aka 'short') is always false (Builder: Chromium OS (x86) Asan (stats) 7005) BRANCH=smaug TEST=On Smaug check that ectool does report invalid temperature when EC returns 0x8000. Check the temperature is correct when the EC returns a valid temperature. BUG=chromium:508674 Change-Id: I2a1414cf7bf018ecaa7ff8dd37c76804de4bce52 Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/284673 Reviewed-by: Alec Berg <alecaberg@chromium.org> Reviewed-by: Achuith Bhandarkar <achuith@chromium.org>
This commit is contained in:
committed by
ChromeOS Commit Bot
parent
d6a8520f6b
commit
8c1d76e52c
@@ -3602,7 +3602,7 @@ static int cmd_motionsense(int argc, char **argv)
|
||||
resp->sensor_offset.offset[0],
|
||||
resp->sensor_offset.offset[1],
|
||||
resp->sensor_offset.offset[2]);
|
||||
if (resp->sensor_offset.temp ==
|
||||
if ((uint16_t)resp->sensor_offset.temp ==
|
||||
EC_MOTION_SENSE_INVALID_CALIB_TEMP)
|
||||
printf("temperature at calibration unknown\n");
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user