summaryrefslogtreecommitdiff
path: root/include/console.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-04-24 17:55:01 -0700
committerRandall Spangler <rspangler@chromium.org>2012-04-24 18:34:46 -0700
commit470916fb0f856945f2a93c7fd160845b5f659be1 (patch)
tree18652a5cff68223ec72650afc12e1e2e727c8529 /include/console.h
parent135f14bf498ab19b6e75efc3a0d18ef7c8a8752d (diff)
downloadchrome-ec-470916fb0f856945f2a93c7fd160845b5f659be1.tar.gz
Use console output instead of uart output for console commands
This completes console output cleanup. The remaining calls to uart_puts() and uart_printf() actually need to be that way. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:7464 TEST=manual Change-Id: Ib1d6d370d30429017b3d11994894fece75fab6ea
Diffstat (limited to 'include/console.h')
-rw-r--r--include/console.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h
index b0d3f5b63e..9b7e3b380a 100644
--- a/include/console.h
+++ b/include/console.h
@@ -24,7 +24,11 @@ enum console_channel {
CC_COMMAND = 0, /* Console command (interactive I/O). Use this only
* inside a console command routine. */
CC_CHARGER,
+ CC_CHIPSET,
+ CC_DMA,
+ CC_GPIO,
CC_HOSTCMD,
+ CC_I2C,
CC_I8042,
CC_KEYBOARD,
CC_KEYSCAN,
@@ -35,7 +39,7 @@ enum console_channel {
CC_SYSTEM,
CC_TASK,
CC_USBCHARGE,
- CC_X86POWER,
+ CC_VBOOT,
/* Channel count; not itself a channel */
CC_CHANNEL_COUNT
};