Mike Frysinger | 9171fc8 | 2008-03-30 15:46:13 -0400 | [diff] [blame] | 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 *argv[]) |