util: Remove duplicate 'const' in export_taskinfo.c

This is causing an error in the latest coreboot toolchain:
util/export_taskinfo.c:33:30: error: duplicate 'const' declaration
specifier [-Werror=duplicate-decl-specifier]

BUG=None
TEST=Build now passes with latest coreboot toolchain and cros
Ztoolchain
BRANCH=None

Change-Id: I069d08128e264310d25a09ada2276f92796294b7
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://chromium-review.googlesource.com/679939
Commit-Ready: Martin Roth <martinroth@chromium.org>
Tested-by: Martin Roth <martinroth@chromium.org>
Reviewed-by: Stefan Reinauer <reinauer@google.com>
This commit is contained in:
Martin Roth
2017-09-23 17:18:30 -06:00
committed by chrome-bot
parent d90300b6e5
commit b38792b78b

View File

@@ -30,7 +30,7 @@ struct taskinfo {
.routine = #r, \
.stack_size = s, \
},
static const struct taskinfo const taskinfos[] = {
static const struct taskinfo taskinfos[] = {
CONFIG_TASK_LIST
};
#undef TASK