summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-04-30 13:14:53 -0700
committerChromeBot <chrome-bot@google.com>2013-05-01 13:19:28 -0700
commitd886035b209d9fad2f72ef837324fdd4c4107c15 (patch)
tree46230d4114bff604fce373eb96a2f73db20a441a
parent73194806034d24594a0ca86fb10867050eba02cc (diff)
downloadchrome-ec-d886035b209d9fad2f72ef837324fdd4c4107c15.tar.gz
Re-enable charging task on pit
Now that I2C works, we can re-enable the charging task to debug battery charging. BUG=chrome-os-partner:18657 BRANCH=none TEST=in EC log, should see battery state messages Change-Id: I600d0152ba416c13420ce853b55206afba9f6cec Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/49649
-rw-r--r--board/pit/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/pit/ec.tasklist b/board/pit/ec.tasklist
index b00e023f02..4cf8e75954 100644
--- a/board/pit/ec.tasklist
+++ b/board/pit/ec.tasklist
@@ -18,7 +18,7 @@
TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(VBOOTHASH, vboot_hash_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(POWERLED, power_led_task, NULL, 256) \
- /* TASK_ALWAYS(CHARGER, charger_task, NULL, TASK_STACK_SIZE) */ \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \