diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2011-08-18 21:14:10 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2011-11-02 14:15:36 +0100 |
commit | 73395a0002aa9573ffc8d989587b79663847f705 (patch) | |
tree | 5edb92458670b6ae30c53c47179b60379922c729 /arch/um/kernel/mem.c | |
parent | um: kill system-um.h (diff) | |
download | linux-73395a0002aa9573ffc8d989587b79663847f705.tar.xz linux-73395a0002aa9573ffc8d989587b79663847f705.zip |
um: distribute exports to where exported stuff is defined
ksyms.c is down to the stuff defined in various USER_OBJS
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/kernel/mem.c')
-rw-r--r-- | arch/um/kernel/mem.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/kernel/mem.c b/arch/um/kernel/mem.c index 8137ccc9635b..ebb86b218445 100644 --- a/arch/um/kernel/mem.c +++ b/arch/um/kernel/mem.c @@ -4,6 +4,7 @@ */ #include <linux/stddef.h> +#include <linux/module.h> #include <linux/bootmem.h> #include <linux/highmem.h> #include <linux/mm.h> @@ -20,6 +21,7 @@ /* allocated in paging_init, zeroed in mem_init, and unchanged thereafter */ unsigned long *empty_zero_page = NULL; +EXPORT_SYMBOL(empty_zero_page); /* allocated in paging_init and unchanged thereafter */ static unsigned long *empty_bad_page = NULL; |