mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
9e1b9b8072
The next commit will require the use of MODULE_SYMBOL_PREFIX in .tmp_exports-asm.S. Currently it is mixed in with C structure definitions in "asm/module.h". Move the definition of this arch option into Kconfig, so it can be easily accessed by any code. This also lets modpost.c use the same definition. Previously modpost relied on a hardcoded list of architectures in mk_elfconfig.c. A build test for blackfin, one of the two MODULE_SYMBOL_PREFIX archs, showed the generated code was unchanged. vmlinux was identical save for build ids, and an apparently randomized suffix on a single "__key" symbol in the kallsyms data). Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk> Acked-by: Mike Frysinger <vapier@gentoo.org> (blackfin) CC: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
25 lines
486 B
C
25 lines
486 B
C
/*
|
||
* Copyright 2004-2008 Analog Devices Inc.
|
||
*
|
||
* Licensed under the GPL-2 or later.
|
||
*/
|
||
|
||
#ifndef _ASM_BFIN_MODULE_H
|
||
#define _ASM_BFIN_MODULE_H
|
||
|
||
#define Elf_Shdr Elf32_Shdr
|
||
#define Elf_Sym Elf32_Sym
|
||
#define Elf_Ehdr Elf32_Ehdr
|
||
|
||
struct mod_arch_specific {
|
||
Elf_Shdr *text_l1;
|
||
Elf_Shdr *data_a_l1;
|
||
Elf_Shdr *bss_a_l1;
|
||
Elf_Shdr *data_b_l1;
|
||
Elf_Shdr *bss_b_l1;
|
||
Elf_Shdr *text_l2;
|
||
Elf_Shdr *data_l2;
|
||
Elf_Shdr *bss_l2;
|
||
};
|
||
#endif /* _ASM_BFIN_MODULE_H */
|