Skip to content
Snippets Groups Projects
Commit 89c95f0c authored by Mike Frysinger's avatar Mike Frysinger Committed by Wolfgang Denk
Browse files

asm-offsets: generate bd_t size


Some ports set up the board info structure at the same time as the global
data structure, and largely keep them together.  So generate a define for
the board info struct too.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 8ef583a0
No related branches found
No related tags found
No related merge requests found
......@@ -25,5 +25,8 @@ int main(void)
DEFINE(GENERATED_GBL_DATA_SIZE,
(sizeof(struct global_data)+15) & ~15);
DEFINE(GENERATED_BD_INFO_SIZE,
(sizeof(struct bd_info)+15) & ~15);
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment