mm-only debug patch...
[mmotm.git] / arch / blackfin / include / asm / module.h
blob9c1cfffddd9b2c832fedb0ebdffc6207c0e9fac8
1 /*
2  * Copyright 2004-2008 Analog Devices Inc.
3  *
4  * Licensed under the GPL-2 or later.
5  */
7 #ifndef _ASM_BFIN_MODULE_H
8 #define _ASM_BFIN_MODULE_H
10 #define MODULE_SYMBOL_PREFIX "_"
12 #define Elf_Shdr Elf32_Shdr
13 #define Elf_Sym Elf32_Sym
14 #define Elf_Ehdr Elf32_Ehdr
16 struct mod_arch_specific {
17 Elf_Shdr *text_l1;
18 Elf_Shdr *data_a_l1;
19 Elf_Shdr *bss_a_l1;
20 Elf_Shdr *data_b_l1;
21 Elf_Shdr *bss_b_l1;
22 Elf_Shdr *text_l2;
23 Elf_Shdr *data_l2;
24 Elf_Shdr *bss_l2;
26 #endif /* _ASM_BFIN_MODULE_H */