summaryrefslogtreecommitdiff
path: root/common/console.c
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-04-05 15:34:01 -0700
committerRandall Spangler <rspangler@chromium.org>2012-04-06 09:06:53 -0700
commita61d8db3d3d7cb145abb3a3580c9a9cfe2d044d7 (patch)
tree6ff786efde031e483645c0900388ca53d51b5255 /common/console.c
parent0eb94470511959c09e5cb0f55eda0478dd5c7b04 (diff)
downloadchrome-ec-a61d8db3d3d7cb145abb3a3580c9a9cfe2d044d7.tar.gz
Change task messages to events
Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:7461 TEST=manual make BOARD={bds,link,daisy} make tests flash link system and make sure it boots Change-Id: I1241a1895c083e387e38ddab01ac346ca4474eb9
Diffstat (limited to 'common/console.c')
-rw-r--r--common/console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/console.c b/common/console.c
index 130b7e4ef1..fc34fb4872 100644
--- a/common/console.c
+++ b/common/console.c
@@ -21,7 +21,7 @@ extern const struct console_command __cmds_end[];
void console_has_input(void)
{
/* Wake up the console task */
- task_send_msg(TASK_ID_CONSOLE, TASK_ID_CONSOLE, 0);
+ task_wake(TASK_ID_CONSOLE);
}
@@ -131,7 +131,7 @@ void console_task(void)
while (1) {
console_process();
/* wait for the next command message */
- task_wait_msg(-1);
+ task_wait_event(-1);
}
}