mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 01:21:49 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user