diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-10-03 06:52:33 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-10-03 06:52:33 -0400 |
commit | 56f68556d7bbb51dd158c74deb09c783345bfbbd (patch) | |
tree | 536e6e3c7063b1eee927194dda257602bd3dc66f /arch/blackfin/include/asm/module.h | |
parent | fd9470ce3ac6fb54d6026e4b1cdab0936e34805e (diff) | |
parent | 7c8ad9828e793573877fd60868bb5d2f1e3b64da (diff) |
Merge unstable branch 'omap-rmk'
Merge branch 'omap-rmk' into omap-all
Diffstat (limited to 'arch/blackfin/include/asm/module.h')
-rw-r--r-- | arch/blackfin/include/asm/module.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/module.h b/arch/blackfin/include/asm/module.h new file mode 100644 index 000000000000..e3128df139d6 --- /dev/null +++ b/arch/blackfin/include/asm/module.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef _ASM_BFIN_MODULE_H | ||
2 | #define _ASM_BFIN_MODULE_H | ||
3 | |||
4 | #define MODULE_SYMBOL_PREFIX "_" | ||
5 | |||
6 | #define Elf_Shdr Elf32_Shdr | ||
7 | #define Elf_Sym Elf32_Sym | ||
8 | #define Elf_Ehdr Elf32_Ehdr | ||
9 | |||
10 | struct mod_arch_specific { | ||
11 | Elf_Shdr *text_l1; | ||
12 | Elf_Shdr *data_a_l1; | ||
13 | Elf_Shdr *bss_a_l1; | ||
14 | Elf_Shdr *data_b_l1; | ||
15 | Elf_Shdr *bss_b_l1; | ||
16 | Elf_Shdr *text_l2; | ||
17 | Elf_Shdr *data_l2; | ||
18 | Elf_Shdr *bss_l2; | ||
19 | }; | ||
20 | #endif /* _ASM_BFIN_MODULE_H */ | ||