Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

microblaze: export assembly functions used by modules

Export __strncpy_user, memory_size, ioremap_bot for modules.

Signed-off-by: Michal Simek <monstr@monstr.eu>

+3
+1
arch/microblaze/kernel/microblaze_ksyms.c
··· 57 57 * Assembly functions that may be used (directly or indirectly) by modules 58 58 */ 59 59 EXPORT_SYMBOL(__copy_tofrom_user); 60 + EXPORT_SYMBOL(__strncpy_user); 60 61 61 62 #ifdef CONFIG_OPT_LIB_ASM 62 63 EXPORT_SYMBOL(memcpy);
+1
arch/microblaze/mm/init.c
··· 47 47 EXPORT_SYMBOL(memory_start); 48 48 unsigned long memory_end; /* due to mm/nommu.c */ 49 49 unsigned long memory_size; 50 + EXPORT_SYMBOL(memory_size); 50 51 51 52 /* 52 53 * paging_init() sets up the page tables - in fact we've already done this.
+1
arch/microblaze/mm/pgtable.c
··· 42 42 43 43 unsigned long ioremap_base; 44 44 unsigned long ioremap_bot; 45 + EXPORT_SYMBOL(ioremap_bot); 45 46 46 47 /* The maximum lowmem defaults to 768Mb, but this can be configured to 47 48 * another value.