aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/sh/kernel/module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sh/kernel/module.c b/arch/sh/kernel/module.c
index 6ba2b79b826b..c43081039dd5 100644
--- a/arch/sh/kernel/module.c
+++ b/arch/sh/kernel/module.c
@@ -37,7 +37,8 @@ void *module_alloc(unsigned long size)
37{ 37{
38 if (size == 0) 38 if (size == 0)
39 return NULL; 39 return NULL;
40 return vmalloc(size); 40
41 return vmalloc_exec(size);
41} 42}
42 43
43 44