diff options
-rw-r--r-- | arch/m68k/sun3/sun3dvma.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/m68k/sun3/sun3dvma.c b/arch/m68k/sun3/sun3dvma.c index ca57966ec3a2..b37521a5259d 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/bootmem.h> | ||
9 | #include <linux/init.h> | 10 | #include <linux/init.h> |
10 | #include <linux/module.h> | 11 | #include <linux/module.h> |
11 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
@@ -31,7 +32,7 @@ static inline void dvma_unmap_iommu(unsigned long a, int b) | |||
31 | extern void sun3_dvma_init(void); | 32 | extern void sun3_dvma_init(void); |
32 | #endif | 33 | #endif |
33 | 34 | ||
34 | static unsigned long iommu_use[IOMMU_TOTAL_ENTRIES]; | 35 | static unsigned long *iommu_use; |
35 | 36 | ||
36 | #define dvma_index(baddr) ((baddr - DVMA_START) >> DVMA_PAGE_SHIFT) | 37 | #define dvma_index(baddr) ((baddr - DVMA_START) >> DVMA_PAGE_SHIFT) |
37 | 38 | ||
@@ -266,7 +267,7 @@ void __init dvma_init(void) | |||
266 | 267 | ||
267 | list_add(&(hole->list), &hole_list); | 268 | list_add(&(hole->list), &hole_list); |
268 | 269 | ||
269 | memset(iommu_use, 0, sizeof(iommu_use)); | 270 | iommu_use = alloc_bootmem(IOMMU_TOTAL_ENTRIES * sizeof(unsigned long)); |
270 | 271 | ||
271 | dvma_unmap_iommu(DVMA_START, DVMA_SIZE); | 272 | dvma_unmap_iommu(DVMA_START, DVMA_SIZE); |
272 | 273 | ||