summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2015-04-10 09:23:22 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-04-11 00:36:05 +0000
commitb5f2ca5daca566a3f8e45f8558b778c00bbbaf36 (patch)
tree638fd68420f982bdd155f47934f7ae1b73c80d94
parent68f65494c7f1d379b6b1a02a026f56a24753444f (diff)
downloadchrome-ec-b5f2ca5daca566a3f8e45f8558b778c00bbbaf36.tar.gz
ryu: remove lightbar traces by default
The lightbar traces are quite verbose when going through AP power cycles and prevent people from debugging the current power issues. Let's turn them off by default, real lightbar lovers can still use the "chan" command to re-enable them. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=none BUG=none TEST=mkae buildall Change-Id: Ia91f1f9ea2c62a35a0d64e06d377f137ba69fc5e Reviewed-on: https://chromium-review.googlesource.com/265145 Reviewed-by: Gwendal Grignou <gwendal@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org> Trybot-Ready: Vincent Palatin <vpalatin@chromium.org>
-rw-r--r--board/ryu/board.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ryu/board.h b/board/ryu/board.h
index fa5f6eb888..95e5f2582e 100644
--- a/board/ryu/board.h
+++ b/board/ryu/board.h
@@ -16,7 +16,7 @@
#define CONFIG_UART_CONSOLE 2
/* By default, enable all console messages excepted USB */
-#define CC_DEFAULT (CC_ALL & ~CC_MASK(CC_USB))
+#define CC_DEFAULT (CC_ALL & ~(CC_MASK(CC_USB) | CC_MASK(CC_LIGHTBAR)))
/* Optional features */
#undef CONFIG_CMD_HASH