]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/x86/cpu/coreboot/asm-offsets.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / x86 / cpu / coreboot / asm-offsets.c
CommitLineData
ef5a5b00
GB
1/*
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 *
1a459660 12 * SPDX-License-Identifier: GPL-2.0+
ef5a5b00
GB
13 */
14
15#include <common.h>
16#include <linux/kbuild.h>
17
18int main(void)
19{
20 DEFINE(GENERATED_GD_RELOC_OFF, offsetof(gd_t, reloc_off));
21 return 0;
22}