Commit 7c63e1ee authored by Chris Metcalf's avatar Chris Metcalf

tile: export a handful of symbols appropriately

This was shown up by running with "allmodconfig".  I used
EXPORT_SYMBOL() to match existing conventions in files that
were already exporting symbols, or that were exported that way
by other architectures, and otherwise EXPORT_SYMBOL_GPL().
Signed-off-by: default avatarChris Metcalf <cmetcalf@tilera.com>
parent 4cfe7629
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/reboot.h> #include <linux/reboot.h>
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/pm.h> #include <linux/pm.h>
#include <linux/export.h>
#include <asm/page.h> #include <asm/page.h>
#include <asm/setup.h> #include <asm/setup.h>
#include <hv/hypervisor.h> #include <hv/hypervisor.h>
...@@ -49,3 +50,4 @@ void machine_restart(char *cmd) ...@@ -49,3 +50,4 @@ void machine_restart(char *cmd)
/* No interesting distinction to be made here. */ /* No interesting distinction to be made here. */
void (*pm_power_off)(void) = NULL; void (*pm_power_off)(void) = NULL;
EXPORT_SYMBOL(pm_power_off);
...@@ -484,6 +484,7 @@ void save_stack_trace(struct stack_trace *trace) ...@@ -484,6 +484,7 @@ void save_stack_trace(struct stack_trace *trace)
{ {
save_stack_trace_tsk(NULL, trace); save_stack_trace_tsk(NULL, trace);
} }
EXPORT_SYMBOL_GPL(save_stack_trace);
#endif #endif
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
* more details. * more details.
*/ */
#include <linux/export.h>
#include <asm/page.h> #include <asm/page.h>
#include <asm/cacheflush.h> #include <asm/cacheflush.h>
#include <arch/icache.h> #include <arch/icache.h>
...@@ -165,3 +166,4 @@ void finv_buffer_remote(void *buffer, size_t size, int hfh) ...@@ -165,3 +166,4 @@ void finv_buffer_remote(void *buffer, size_t size, int hfh)
__insn_mtspr(SPR_DSTREAM_PF, old_dstream_pf); __insn_mtspr(SPR_DSTREAM_PF, old_dstream_pf);
#endif #endif
} }
EXPORT_SYMBOL_GPL(finv_buffer_remote);
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/ctype.h> #include <linux/ctype.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/export.h>
/* /*
* Allow cropping out bits beyond the end of the array. * Allow cropping out bits beyond the end of the array.
...@@ -50,3 +51,4 @@ int bitmap_parselist_crop(const char *bp, unsigned long *maskp, int nmaskbits) ...@@ -50,3 +51,4 @@ int bitmap_parselist_crop(const char *bp, unsigned long *maskp, int nmaskbits)
} while (*bp != '\0' && *bp != '\n'); } while (*bp != '\0' && *bp != '\n');
return 0; return 0;
} }
EXPORT_SYMBOL(bitmap_parselist_crop);
...@@ -55,6 +55,8 @@ EXPORT_SYMBOL(hv_dev_poll_cancel); ...@@ -55,6 +55,8 @@ EXPORT_SYMBOL(hv_dev_poll_cancel);
EXPORT_SYMBOL(hv_dev_close); EXPORT_SYMBOL(hv_dev_close);
EXPORT_SYMBOL(hv_sysconf); EXPORT_SYMBOL(hv_sysconf);
EXPORT_SYMBOL(hv_confstr); EXPORT_SYMBOL(hv_confstr);
EXPORT_SYMBOL(hv_get_rtc);
EXPORT_SYMBOL(hv_set_rtc);
/* libgcc.a */ /* libgcc.a */
uint32_t __udivsi3(uint32_t dividend, uint32_t divisor); uint32_t __udivsi3(uint32_t dividend, uint32_t divisor);
......
...@@ -408,6 +408,7 @@ void homecache_change_page_home(struct page *page, int order, int home) ...@@ -408,6 +408,7 @@ void homecache_change_page_home(struct page *page, int order, int home)
__set_pte(ptep, pte_set_home(pteval, home)); __set_pte(ptep, pte_set_home(pteval, home));
} }
} }
EXPORT_SYMBOL(homecache_change_page_home);
struct page *homecache_alloc_pages(gfp_t gfp_mask, struct page *homecache_alloc_pages(gfp_t gfp_mask,
unsigned int order, int home) unsigned int order, int home)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment