diff options
author | Ravi Chandra Sadineni <ravisadineni@chromium.org> | 2016-07-26 18:04:09 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2016-07-30 01:24:50 -0700 |
commit | bcb0de22a429eacb2e3f588cd93294b9bccea2bc (patch) | |
tree | e8fca6156c1eaebf8c2c0bf2d8ef12cf99252cd0 /board/lucid | |
parent | ea91c71c089b1a75ddcc4e90a0c38ea3b1578d6c (diff) | |
download | chrome-ec-bcb0de22a429eacb2e3f588cd93294b9bccea2bc.tar.gz |
Use CONFIG_DPTF flag instead of THROTTLE_AP.
Signed-off-by: Ravi Chandra Sadineni <ravisadineni@chromium.org>
BRANCH=none
BUG=chromium:631848
TEST=make buildall -j
CQ-DEPEND=CL:363008
Change-Id: I3c35f5ab2e3a1537ac6e8c750171d5c2b3a6570f
Reviewed-on: https://chromium-review.googlesource.com/363583
Commit-Ready: David Hendricks <dhendrix@chromium.org>
Tested-by: David Hendricks <dhendrix@chromium.org>
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Reviewed-by: Duncan Laurie <dlaurie@google.com>
Diffstat (limited to 'board/lucid')
-rw-r--r-- | board/lucid/board.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/board/lucid/board.c b/board/lucid/board.c index f2c5467f87..ed552cf065 100644 --- a/board/lucid/board.c +++ b/board/lucid/board.c @@ -148,16 +148,6 @@ const struct temp_sensor_t temp_sensors[] = { }; BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT); -/* - * Thermal limits for each temp sensor. All temps are in degrees K. Must be in - * same order as enum temp_sensor_id. To always ignore any temp, use 0. - */ -struct ec_thermal_config thermal_params[] = { - /* {Twarn, Thigh, Thalt}, fan_off, fan_max */ - {{0, 0, 0}, 0, 0}, /* Battery */ -}; -BUILD_ASSERT(ARRAY_SIZE(thermal_params) == TEMP_SENSOR_COUNT); - /* Initialize board. */ static void board_init(void) { |