projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e07dba
)
microblaze: Export missing symbols for modules
author
Michal Simek
<monstr@monstr.eu>
Thu, 12 Aug 2010 11:06:59 +0000
(13:06 +0200)
committer
Michal Simek
<monstr@monstr.eu>
Thu, 21 Oct 2010 05:51:43 +0000
(15:51 +1000)
Several kernel modules requires empty_zero_page and mbc
to be exported.
Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/kernel/microblaze_ksyms.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/microblaze/kernel/microblaze_ksyms.c
b/arch/microblaze/kernel/microblaze_ksyms.c
index ef0ab9bb15c1a051cf889fab3733dee431251388..5cb034174005a4be062b188cb6f358a0c1f095a9 100644
(file)
--- a/
arch/microblaze/kernel/microblaze_ksyms.c
+++ b/
arch/microblaze/kernel/microblaze_ksyms.c
@@
-15,6
+15,7
@@
#include <linux/syscalls.h>
#include <asm/checksum.h>
+#include <asm/cacheflush.h>
#include <linux/io.h>
#include <asm/page.h>
#include <asm/system.h>
@@
-38,3
+39,9
@@
EXPORT_SYMBOL(__strncpy_user);
EXPORT_SYMBOL(memcpy);
EXPORT_SYMBOL(memmove);
#endif
+
+#ifdef CONFIG_MMU
+EXPORT_SYMBOL(empty_zero_page);
+#endif
+
+EXPORT_SYMBOL(mbc);