diff options
-rw-r--r-- | arch/mips/kernel/syscall.c | 3 | ||||
-rw-r--r-- | arch/mips/mm/cache.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index 21e3e13a4b44..8fde242596f9 100644 --- a/arch/mips/kernel/syscall.c +++ b/arch/mips/kernel/syscall.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/msg.h> | 26 | #include <linux/msg.h> |
27 | #include <linux/shm.h> | 27 | #include <linux/shm.h> |
28 | #include <linux/compiler.h> | 28 | #include <linux/compiler.h> |
29 | #include <linux/module.h> | ||
29 | 30 | ||
30 | #include <asm/branch.h> | 31 | #include <asm/branch.h> |
31 | #include <asm/cachectl.h> | 32 | #include <asm/cachectl.h> |
@@ -56,6 +57,8 @@ out: | |||
56 | 57 | ||
57 | unsigned long shm_align_mask = PAGE_SIZE - 1; /* Sane caches */ | 58 | unsigned long shm_align_mask = PAGE_SIZE - 1; /* Sane caches */ |
58 | 59 | ||
60 | EXPORT_SYMBOL(shm_align_mask); | ||
61 | |||
59 | #define COLOUR_ALIGN(addr,pgoff) \ | 62 | #define COLOUR_ALIGN(addr,pgoff) \ |
60 | ((((addr) + shm_align_mask) & ~shm_align_mask) + \ | 63 | ((((addr) + shm_align_mask) & ~shm_align_mask) + \ |
61 | (((pgoff) << PAGE_SHIFT) & shm_align_mask)) | 64 | (((pgoff) << PAGE_SHIFT) & shm_align_mask)) |
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index c0ac4f97e1ae..fe0110074902 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
@@ -33,6 +33,8 @@ void (*flush_cache_sigtramp)(unsigned long addr); | |||
33 | void (*flush_data_cache_page)(unsigned long addr); | 33 | void (*flush_data_cache_page)(unsigned long addr); |
34 | void (*flush_icache_all)(void); | 34 | void (*flush_icache_all)(void); |
35 | 35 | ||
36 | EXPORT_SYMBOL(flush_data_cache_page); | ||
37 | |||
36 | #ifdef CONFIG_DMA_NONCOHERENT | 38 | #ifdef CONFIG_DMA_NONCOHERENT |
37 | 39 | ||
38 | /* DMA cache operations. */ | 40 | /* DMA cache operations. */ |