patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / arch / m68k / mm / sun3mmu.c
index 084fbfb..256c5ee 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  * linux/arch/m68k/mm/sun3mmu.c
  *
  * Implementations of mm routines specific to the sun3 MMU.
@@ -64,12 +64,12 @@ void __init paging_init(void)
 
        size = num_pages * sizeof(pte_t);
        size = (size + PAGE_SIZE) & ~(PAGE_SIZE-1);
-       
+
        next_pgtable = (unsigned long)alloc_bootmem_pages(size);
        bootmem_end = (next_pgtable + size + PAGE_SIZE) & PAGE_MASK;
 
        /* Map whole memory from PAGE_OFFSET (0x0E000000) */
-       pg_dir += PAGE_OFFSET >> PGDIR_SHIFT; 
+       pg_dir += PAGE_OFFSET >> PGDIR_SHIFT;
 
        while (address < (unsigned long)high_memory) {
                pg_table = (pte_t *) __pa (next_pgtable);
@@ -95,7 +95,7 @@ void __init paging_init(void)
        /* memory sizing is a hack stolen from motorola.c..  hope it works for us */
        zones_size[0] = ((unsigned long)high_memory - PAGE_OFFSET) >> PAGE_SHIFT;
        zones_size[1] = 0;
-       
+
        free_area_init(zones_size);
 
 }