diff options
author | Michal Simek <monstr@monstr.eu> | 2010-05-13 06:11:42 -0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-05-13 06:11:42 -0400 |
commit | ee4bcdf1d248c4ebe5f73e11631c3bd3f76d777b (patch) | |
tree | 3dd2ae05fbf33960e5ed2b725e5ebe0bcbe3ed60 | |
parent | 1ce2470aa544a0aa37b575c45cba366770860af7 (diff) |
microblaze: export assembly functions used by modules
Export __strncpy_user, memory_size, ioremap_bot for modules.
Signed-off-by: Michal Simek <monstr@monstr.eu>
-rw-r--r-- | arch/microblaze/kernel/microblaze_ksyms.c | 1 | ||||
-rw-r--r-- | arch/microblaze/mm/init.c | 1 | ||||
-rw-r--r-- | arch/microblaze/mm/pgtable.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/arch/microblaze/kernel/microblaze_ksyms.c b/arch/microblaze/kernel/microblaze_ksyms.c index ecfb852cd1c5..ff85f7718035 100644 --- a/arch/microblaze/kernel/microblaze_ksyms.c +++ b/arch/microblaze/kernel/microblaze_ksyms.c | |||
@@ -57,6 +57,7 @@ EXPORT_SYMBOL(_mcount); | |||
57 | * Assembly functions that may be used (directly or indirectly) by modules | 57 | * Assembly functions that may be used (directly or indirectly) by modules |
58 | */ | 58 | */ |
59 | EXPORT_SYMBOL(__copy_tofrom_user); | 59 | EXPORT_SYMBOL(__copy_tofrom_user); |
60 | EXPORT_SYMBOL(__strncpy_user); | ||
60 | 61 | ||
61 | #ifdef CONFIG_OPT_LIB_ASM | 62 | #ifdef CONFIG_OPT_LIB_ASM |
62 | EXPORT_SYMBOL(memcpy); | 63 | EXPORT_SYMBOL(memcpy); |
diff --git a/arch/microblaze/mm/init.c b/arch/microblaze/mm/init.c index f42c2dde8b1c..cca3579d4268 100644 --- a/arch/microblaze/mm/init.c +++ b/arch/microblaze/mm/init.c | |||
@@ -47,6 +47,7 @@ unsigned long memory_start; | |||
47 | EXPORT_SYMBOL(memory_start); | 47 | EXPORT_SYMBOL(memory_start); |
48 | unsigned long memory_end; /* due to mm/nommu.c */ | 48 | unsigned long memory_end; /* due to mm/nommu.c */ |
49 | unsigned long memory_size; | 49 | unsigned long memory_size; |
50 | EXPORT_SYMBOL(memory_size); | ||
50 | 51 | ||
51 | /* | 52 | /* |
52 | * paging_init() sets up the page tables - in fact we've already done this. | 53 | * paging_init() sets up the page tables - in fact we've already done this. |
diff --git a/arch/microblaze/mm/pgtable.c b/arch/microblaze/mm/pgtable.c index 784557fb28cf..59bf2335a4ce 100644 --- a/arch/microblaze/mm/pgtable.c +++ b/arch/microblaze/mm/pgtable.c | |||
@@ -42,6 +42,7 @@ | |||
42 | 42 | ||
43 | unsigned long ioremap_base; | 43 | unsigned long ioremap_base; |
44 | unsigned long ioremap_bot; | 44 | unsigned long ioremap_bot; |
45 | EXPORT_SYMBOL(ioremap_bot); | ||
45 | 46 | ||
46 | /* The maximum lowmem defaults to 768Mb, but this can be configured to | 47 | /* The maximum lowmem defaults to 768Mb, but this can be configured to |
47 | * another value. | 48 | * another value. |