aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.4-xen-sparse/include/asm-xen/module.h
blob: 17cd5ff07cb63750670299075651d5ee4d231fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _ASM_I386_MODULE_H
#define _ASM_I386_MODULE_H
/*
 * This file contains the i386 architecture specific module code.
 */

extern int xen_module_init(struct module *mod);

#define module_map(x)		vmalloc(x)
#define module_unmap(x)		vfree(x)
#define module_arch_init(x)	xen_module_init(x)
#define arch_init_modules(x)	do { } while (0)

#endif /* _ASM_I386_MODULE_H */