diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-arm/module.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/asm-arm/module.h b/include/asm-arm/module.h index 7717a588ece5..5b4d1a3f3679 100644 --- a/include/asm-arm/module.h +++ b/include/asm-arm/module.h @@ -1,12 +1,13 @@ #ifndef _ASM_ARM_MODULE_H #define _ASM_ARM_MODULE_H -/* - * This file contains the arm architecture specific module code. - */ -#define module_map(x) vmalloc(x) -#define module_unmap(x) vfree(x) -#define module_arch_init(x) (0) -#define arch_init_modules(x) do { } while (0) +struct mod_arch_specific +{ + int foo; +}; + +#define Elf_Shdr Elf32_Shdr +#define Elf_Sym Elf32_Sym +#define Elf_Ehdr Elf32_Ehdr #endif /* _ASM_ARM_MODULE_H */ |
