summaryrefslogtreecommitdiff
path: root/board/host/board.c
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2013-05-16 10:31:27 -0700
committerStéphane Marchesin <marcheu@chromium.org>2013-05-16 11:10:28 -0700
commit89e688a3325e91d3c59ac639f04f2c91019c9b10 (patch)
treeb0e87b13139d9dc9d5d09f5977ec18e7634713b1 /board/host/board.c
parentc58c01b14cd45550991be1624146bc813092d202 (diff)
downloadchrome-ec-89e688a3325e91d3c59ac639f04f2c91019c9b10.tar.gz
Revert "Add thermal engine test"
Time-scale functionality is temporarily reverted and this test is now taking too long. Revert this test now. Will add it back when we solve the time-scale issue. This reverts commit d9cf88b35ad211d873f48b41fd985e22ff049b83 Change-Id: Id9ce1071eb2114dd6968d3df9f0bce395edaeef6 Reviewed-on: https://gerrit.chromium.org/gerrit/51482 Commit-Queue: Vic Yang <victoryang@chromium.org> Tested-by: Vic Yang <victoryang@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org> Tested-by: Stéphane Marchesin <marcheu@chromium.org>
Diffstat (limited to 'board/host/board.c')
-rw-r--r--board/host/board.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/board/host/board.c b/board/host/board.c
index 10d8d1d3c4..5c1603767a 100644
--- a/board/host/board.c
+++ b/board/host/board.c
@@ -6,22 +6,9 @@
#include "board.h"
#include "gpio.h"
-#include "temp_sensor.h"
const struct gpio_info gpio_list[GPIO_COUNT] = {
{"EC_INT", 0, 0, 0, 0},
{"LID_OPEN", 0, 0, 0, 0},
{"POWER_BUTTON_L", 0, 0, 0, 0},
};
-
-static int dummy_temp_get_val(int idx, int *temp_ptr)
-{
- *temp_ptr = 0;
- return EC_SUCCESS;
-}
-
-const struct temp_sensor_t temp_sensors[TEMP_SENSOR_COUNT] = {
- {"CPU", TEMP_SENSOR_TYPE_CPU, dummy_temp_get_val, 0, 3},
- {"Board", TEMP_SENSOR_TYPE_BOARD, dummy_temp_get_val, 0, 3},
- {"Case", TEMP_SENSOR_TYPE_CASE, dummy_temp_get_val, 0, 0},
-};