diff options
Diffstat (limited to 'arch/m68k/sun3/sun3dvma.c')
| -rw-r--r-- | arch/m68k/sun3/sun3dvma.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/m68k/sun3/sun3dvma.c b/arch/m68k/sun3/sun3dvma.c index a2bc2da7f8f0..8709677fa025 100644 --- a/arch/m68k/sun3/sun3dvma.c +++ b/arch/m68k/sun3/sun3dvma.c | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | * Contains common routines for sun3/sun3x DVMA management. | 6 | * Contains common routines for sun3/sun3x DVMA management. |
| 7 | */ | 7 | */ |
| 8 | 8 | ||
| 9 | #include <linux/module.h> | ||
| 9 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
| 10 | #include <linux/mm.h> | 11 | #include <linux/mm.h> |
| 11 | #include <linux/list.h> | 12 | #include <linux/list.h> |
| @@ -312,6 +313,7 @@ inline unsigned long dvma_map_align(unsigned long kaddr, int len, int align) | |||
| 312 | BUG(); | 313 | BUG(); |
| 313 | return 0; | 314 | return 0; |
| 314 | } | 315 | } |
| 316 | EXPORT_SYMBOL(dvma_map_align); | ||
| 315 | 317 | ||
| 316 | void dvma_unmap(void *baddr) | 318 | void dvma_unmap(void *baddr) |
| 317 | { | 319 | { |
| @@ -327,7 +329,7 @@ void dvma_unmap(void *baddr) | |||
| 327 | return; | 329 | return; |
| 328 | 330 | ||
| 329 | } | 331 | } |
| 330 | 332 | EXPORT_SYMBOL(dvma_unmap); | |
| 331 | 333 | ||
| 332 | void *dvma_malloc_align(unsigned long len, unsigned long align) | 334 | void *dvma_malloc_align(unsigned long len, unsigned long align) |
| 333 | { | 335 | { |
| @@ -367,6 +369,7 @@ void *dvma_malloc_align(unsigned long len, unsigned long align) | |||
| 367 | return (void *)vaddr; | 369 | return (void *)vaddr; |
| 368 | 370 | ||
| 369 | } | 371 | } |
| 372 | EXPORT_SYMBOL(dvma_malloc_align); | ||
| 370 | 373 | ||
| 371 | void dvma_free(void *vaddr) | 374 | void dvma_free(void *vaddr) |
| 372 | { | 375 | { |
| @@ -374,3 +377,4 @@ void dvma_free(void *vaddr) | |||
| 374 | return; | 377 | return; |
| 375 | 378 | ||
| 376 | } | 379 | } |
| 380 | EXPORT_SYMBOL(dvma_free); | ||
