blob: 50a488f4f189bae93063de17fde96eb8c4dd9d73 [file] [log] [blame]
Gabe Blackef5a5b02011-11-29 18:05:07 +00001/*
2 * Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c
3 *
4 * This program is used to generate definitions needed by
5 * assembly language modules.
6 *
7 * We use the technique used in the OSF Mach kernel code:
8 * generate asm statements containing #defines,
9 * compile this file to assembler, and then extract the
10 * #defines from the assembly-language output.
11 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Gabe Blackef5a5b02011-11-29 18:05:07 +000013 */
14
15#include <common.h>
16#include <linux/kbuild.h>
17
18int main(void)
19{
Bin Mengfe0c33a2014-12-12 21:05:22 +080020 DEFINE(GD_BIST, offsetof(gd_t, arch.bist));
Gabe Blackef5a5b02011-11-29 18:05:07 +000021 return 0;
22}