summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAseda Aboagye <aaboagye@google.com>2015-11-04 14:50:37 -0800
committerchrome-bot <chrome-bot@chromium.org>2015-11-09 12:49:43 -0800
commit006d2ad3a6a39ea1be56137ca17fbc2b998b5c4c (patch)
tree85c2be37724e7626fa8350be217e820b7ff69235
parent8608ea0a6c28918f60e8fada178e6d8b9aaa1c62 (diff)
downloadchrome-ec-006d2ad3a6a39ea1be56137ca17fbc2b998b5c4c.tar.gz
common: host_command_master: Add buf to .bss.slow.
BUG=chrome-os-partner:46056 BUG=chrome-os-partner:46063 BRANCH=None TEST=Enable CONFIG_REPLACE_LOADER_WITH_BSS_SLOW on GLaDOS. Build, flash, and verify that AP and EC boot. TEST=make -j buildall tests CQ-DEPEND=CL:311209 Change-Id: Idb078b537addd0439f71f99489c27a6d1303ec5a Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/311426 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org> Reviewed-by: Alec Berg <alecaberg@chromium.org>
-rw-r--r--common/host_command_master.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/host_command_master.c b/common/host_command_master.c
index 39bbf37df5..d0a16e1331 100644
--- a/common/host_command_master.c
+++ b/common/host_command_master.c
@@ -188,8 +188,8 @@ int pd_host_command(int command, int version,
static int command_pd_mcu(int argc, char **argv)
{
char *e;
- static char outbuf[128];
- static char inbuf[128];
+ static char __bss_slow outbuf[128];
+ static char __bss_slow inbuf[128];
int command, version;
int i, ret, tmp;