GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / m68k / include / asm / module.h
blob5f21e11071bdfc1aad9bf5706ff47aa3e6c4a72f
1 #ifndef _ASM_M68K_MODULE_H
2 #define _ASM_M68K_MODULE_H
4 #ifdef CONFIG_MMU
6 struct mod_arch_specific {
7 struct m68k_fixup_info *fixup_start, *fixup_end;
8 };
10 #define MODULE_ARCH_INIT { \
11 .fixup_start = __start_fixup, \
12 .fixup_end = __stop_fixup, \
16 enum m68k_fixup_type {
17 m68k_fixup_memoffset,
18 m68k_fixup_vnode_shift,
21 struct m68k_fixup_info {
22 enum m68k_fixup_type type;
23 void *addr;
26 #define m68k_fixup(type, addr) \
27 " .section \".m68k_fixup\",\"aw\"\n" \
28 " .long " #type "," #addr "\n" \
29 " .previous\n"
31 extern struct m68k_fixup_info __start_fixup[], __stop_fixup[];
33 struct module;
34 extern void module_fixup(struct module *mod, struct m68k_fixup_info *start,
35 struct m68k_fixup_info *end);
37 #else
39 struct mod_arch_specific {
42 #endif /* CONFIG_MMU */
44 #define Elf_Shdr Elf32_Shdr
45 #define Elf_Sym Elf32_Sym
46 #define Elf_Ehdr Elf32_Ehdr
48 #endif /* _ASM_M68K_MODULE_H */