Skip to content
Snippets Groups Projects
Commit a31ec048 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

asm-generic/export.h: make __ksymtab_* local symbols


For EXPORT_SYMBOL from C files, <linux/export.h> defines __ksymtab_*
as local symbols.

For EXPORT_SYMBOL from assembly, in contrast, <asm-generic/export.h>
produces globally-visible __ksymtab_* symbols due to this .globl
directive.

I do not know why this must be global. It still works without this.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 2dffd23f
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,6 @@
*/
.macro ___EXPORT_SYMBOL name,val,sec
#ifdef CONFIG_MODULES
.globl __ksymtab_\name
.section ___ksymtab\sec+\name,"a"
.balign KSYM_ALIGN
__ksymtab_\name:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment