diff options
Diffstat (limited to 'include/asm-alpha/module.h')
-rw-r--r-- | include/asm-alpha/module.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/asm-alpha/module.h b/include/asm-alpha/module.h new file mode 100644 index 000000000..6e0efe9ac --- /dev/null +++ b/include/asm-alpha/module.h @@ -0,0 +1,11 @@ +#ifndef _ASM_ALPHA_MODULE_H +#define _ASM_ALPHA_MODULE_H +/* + * This file contains the alpha architecture specific module code. + */ + +#define module_map(x) vmalloc(x) +#define module_unmap(x) vfree(x) +#define module_arch_init(x) (0) + +#endif /* _ASM_ALPHA_MODULE_H */ |