xref: /linux/arch/alpha/include/asm/module.h (revision 17afab1de42236ee2f6235f4383cc6f3f13f8a10)
1 #ifndef _ALPHA_MODULE_H
2 #define _ALPHA_MODULE_H
3 
4 #include <asm-generic/module.h>
5 
6 struct mod_arch_specific
7 {
8 	unsigned int gotsecindex;
9 };
10 
11 #define ARCH_SHF_SMALL SHF_ALPHA_GPREL
12 
13 #ifdef MODULE
14 asm(".section .got,\"aws\",@progbits; .align 3; .previous");
15 #endif
16 
17 #endif /*_ALPHA_MODULE_H*/
18