allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / xtensa / kernel / module.c
blob2ea1755a085851328d63cc5153d2ccfabac4066a
1 /*
2 * arch/xtensa/kernel/module.c
4 * Module support.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
10 * Copyright (C) 2001 - 2005 Tensilica Inc.
12 * Chris Zankel <chris@zankel.net>
16 #include <linux/module.h>
17 #include <linux/moduleloader.h>
18 #include <linux/elf.h>
19 #include <linux/vmalloc.h>
20 #include <linux/fs.h>
21 #include <linux/string.h>
22 #include <linux/kernel.h>
23 #include <linux/cache.h>
25 LIST_HEAD(module_buf_list);
27 void *module_alloc(unsigned long size)
29 panic("module_alloc not implemented");
32 void module_free(struct module *mod, void *module_region)
34 panic("module_free not implemented");
37 int module_frob_arch_sections(Elf32_Ehdr *hdr,
38 Elf32_Shdr *sechdrs,
39 char *secstrings,
40 struct module *me)
42 panic("module_frob_arch_sections not implemented");
45 int apply_relocate(Elf32_Shdr *sechdrs,
46 const char *strtab,
47 unsigned int symindex,
48 unsigned int relsec,
49 struct module *module)
51 panic ("apply_relocate not implemented");
54 int apply_relocate_add(Elf32_Shdr *sechdrs,
55 const char *strtab,
56 unsigned int symindex,
57 unsigned int relsec,
58 struct module *module)
60 panic("apply_relocate_add not implemented");
63 int module_finalize(const Elf_Ehdr *hdr,
64 const Elf_Shdr *sechdrs,
65 struct module *me)
67 panic ("module_finalize not implemented");
70 void module_arch_cleanup(struct module *mod)
72 panic("module_arch_cleanup not implemented");
75 struct bug_entry *module_find_bug(unsigned long bugaddr)
77 panic("module_find_bug not implemented");