summaryrefslogtreecommitdiff
path: root/common/temp_sensor.c
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2013-09-01 12:09:06 +0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-09-04 20:32:49 +0000
commit04d8465b7550f9752454985f5bcafd3c61da8ee4 (patch)
tree1a6414388823d4f58d6e1b43bffa86351f2ec063 /common/temp_sensor.c
parentf2046ce3dc510b7c5c2673d291d199cae70fb9d1 (diff)
downloadchrome-ec-04d8465b7550f9752454985f5bcafd3c61da8ee4.tar.gz
Also test temp sensor read delegation in thermal test
Temperature sensor read is delegated to functions defined in board.c. Let's mock that function instead of the one in temp_sensor module. BUG=chrome-os-partner:19236 TEST=Pass thermal test. BRANCH=None Change-Id: Ic0387bd6a49e3f032e593c11c6f80bd36f8474e7 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/167761 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'common/temp_sensor.c')
-rw-r--r--common/temp_sensor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/temp_sensor.c b/common/temp_sensor.c
index 3b5a59c587..221219bce9 100644
--- a/common/temp_sensor.c
+++ b/common/temp_sensor.c
@@ -23,7 +23,7 @@
/* Default temperature to report in mapped memory */
#define MAPPED_TEMP_DEFAULT (296 - EC_TEMP_SENSOR_OFFSET)
-test_mockable int temp_sensor_read(enum temp_sensor_id id, int *temp_ptr)
+int temp_sensor_read(enum temp_sensor_id id, int *temp_ptr)
{
const struct temp_sensor_t *sensor;