]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/blackfin/cpu/bootrom-asm-offsets.c.in
Blackfin: use on-chip reset func with newer parts
[karo-tx-uboot.git] / arch / blackfin / cpu / bootrom-asm-offsets.c.in
1 /* A little trick taken from the kernel asm-offsets.h where we convert
2  * the C structures automatically into a bunch of defines for use in
3  * the assembly files.
4  */
5
6 #include <linux/stddef.h>
7 #include <asm/mach-common/bits/bootrom.h>
8
9 #define _DEFINE(sym, val) asm volatile("\n->" #sym " %0 " #val : : "i" (val))
10 #define DEFINE(s, m) _DEFINE(offset_##s##_##m, offsetof(s, m))
11
12 int main(int argc, char * const argv[])