2 * arch/xtensa/kernel/platform.c
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
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>
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,
42 panic("module_frob_arch_sections not implemented");
45 int apply_relocate(Elf32_Shdr *sechdrs,
47 unsigned int symindex,
49 struct module *module)
51 panic ("apply_relocate not implemented");
54 int apply_relocate_add(Elf32_Shdr *sechdrs,
56 unsigned int symindex,
58 struct module *module)
60 panic("apply_relocate_add not implemented");
63 int module_finalize(const Elf_Ehdr *hdr,
64 const Elf_Shdr *sechdrs,
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");