summaryrefslogtreecommitdiff
path: root/common/port80.c
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2021-10-11 22:14:31 +0000
committerCommit Bot <commit-bot@chromium.org>2021-10-19 17:04:33 +0000
commit7dcbbb899b5ee0c68c490a88343305f20074f371 (patch)
tree5fd80f48d98226d7f80a81031e13d01f2f3a29d1 /common/port80.c
parent01d23cbdea6fc63110733fd6d0701e7cf2612651 (diff)
downloadchrome-ec-7dcbbb899b5ee0c68c490a88343305f20074f371.tar.gz
tree: Remove .bss.slow
The config option to enable .bss.slow was removed in commit b224441aaaa5dd08274811d65bb795b4abc231d8 because the option was only used with kunimitsu, which was removed from the EC codebase a long time ago. Remove the reference in the linker maps to complete the cleanup. BRANCH=none BUG=b:172020503, b:172221339 TEST=make buildall Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: Ibc519f9974cb26e6d15180e2ce0c359867ced1ac Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3219263 Reviewed-by: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'common/port80.c')
-rw-r--r--common/port80.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/port80.c b/common/port80.c
index 5d4a6b12ac..231181cad8 100644
--- a/common/port80.c
+++ b/common/port80.c
@@ -22,10 +22,10 @@ typedef uint32_t port80_code_t;
#else
typedef uint16_t port80_code_t;
#endif
-static port80_code_t __bss_slow history[CONFIG_PORT80_HISTORY_LEN];
-static int __bss_slow writes; /* Number of port 80 writes so far */
+static port80_code_t history[CONFIG_PORT80_HISTORY_LEN];
+static int writes; /* Number of port 80 writes so far */
static uint16_t last_boot; /* Last code from previous boot */
-static int __bss_slow scroll;
+static int scroll;
#ifdef CONFIG_BRINGUP
#undef CONFIG_PORT80_PRINT_IN_INT