#ifndef __ASM_AVR32_MODULE_H1#define __ASM_AVR32_MODULE_H23struct mod_arch_syminfo {4unsigned long got_offset;5int got_initialized;6};78struct mod_arch_specific {9/* Starting offset of got in the module core memory. */10unsigned long got_offset;11/* Size of the got. */12unsigned long got_size;13/* Number of symbols in syminfo. */14int nsyms;15/* Additional symbol information (got offsets). */16struct mod_arch_syminfo *syminfo;17};1819#define Elf_Shdr Elf32_Shdr20#define Elf_Sym Elf32_Sym21#define Elf_Ehdr Elf32_Ehdr2223#define MODULE_PROC_FAMILY "AVR32v1"2425#define MODULE_ARCH_VERMAGIC MODULE_PROC_FAMILY2627#endif /* __ASM_AVR32_MODULE_H */282930