From 68fb0ff425e97ee7d014e1777490f3f0da6316cb Mon Sep 17 00:00:00 2001 From: Diana Z Date: Thu, 13 Feb 2020 10:33:13 -0700 Subject: Temp sensor: Remove action_delay_sec field The action_delay_sec field hasn't actually been referenced by any code since 2013. Removing the corresponding struct field. BUG=None BRANCH=None TEST=builds Change-Id: Ia7334c26b85d0161ff61bb51fbdda61bb921595a Signed-off-by: Diana Z Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2054945 Reviewed-by: Aseda Aboagye --- board/bloog/board.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'board/bloog/board.c') diff --git a/board/bloog/board.c b/board/bloog/board.c index e3b68e8d5f..b2424b5721 100644 --- a/board/bloog/board.c +++ b/board/bloog/board.c @@ -89,18 +89,15 @@ const struct temp_sensor_t temp_sensors[] = { [TEMP_SENSOR_BATTERY] = {.name = "Battery", .type = TEMP_SENSOR_TYPE_BATTERY, .read = charge_get_battery_temp, - .idx = 0, - .action_delay_sec = 1}, + .idx = 0}, [TEMP_SENSOR_AMBIENT] = {.name = "Ambient", .type = TEMP_SENSOR_TYPE_BOARD, .read = get_temp_3v3_51k1_47k_4050b, - .idx = ADC_TEMP_SENSOR_AMB, - .action_delay_sec = 5}, + .idx = ADC_TEMP_SENSOR_AMB}, [TEMP_SENSOR_CHARGER] = {.name = "Charger", .type = TEMP_SENSOR_TYPE_BOARD, .read = get_temp_3v3_13k7_47k_4050b, - .idx = ADC_TEMP_SENSOR_CHARGER, - .action_delay_sec = 1}, + .idx = ADC_TEMP_SENSOR_CHARGER}, }; BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT); -- cgit v1.2.1