patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-m68k / tlbflush.h
index 498f090..c989e4f 100644 (file)
@@ -147,7 +147,7 @@ static inline void flush_tlb_mm (struct mm_struct *mm)
             seg = sun3_get_segmap(i);
             if(seg == SUN3_INVALID_PMEG)
                     continue;
-            
+
             sun3_put_segmap(i, SUN3_INVALID_PMEG);
             pmeg_alloc[seg] = 0;
             pmeg_ctx[seg] = 0;
@@ -155,7 +155,7 @@ static inline void flush_tlb_mm (struct mm_struct *mm)
      }
 
      sun3_put_context(oldctx);
-                    
+
 }
 
 /* Flush a single TLB page. In this case, we're limited to flushing a
@@ -174,7 +174,7 @@ static inline void flush_tlb_page (struct vm_area_struct *vma,
                pmeg_alloc[i] = 0;
                pmeg_ctx[i] = 0;
                pmeg_vaddr[i] = 0;
-               sun3_put_segmap (addr,  SUN3_INVALID_PMEG);     
+               sun3_put_segmap (addr,  SUN3_INVALID_PMEG);
        }
        sun3_put_context(oldctx);
 
@@ -186,7 +186,7 @@ static inline void flush_tlb_range (struct vm_area_struct *vma,
 {
        struct mm_struct *mm = vma->vm_mm;
        unsigned char seg, oldctx;
-       
+
        start &= ~SUN3_PMEG_MASK;
 
        oldctx = sun3_get_context();
@@ -194,7 +194,7 @@ static inline void flush_tlb_range (struct vm_area_struct *vma,
 
        while(start < end)
        {
-               if((seg = sun3_get_segmap(start)) == SUN3_INVALID_PMEG) 
+               if((seg = sun3_get_segmap(start)) == SUN3_INVALID_PMEG)
                     goto next;
                if(pmeg_ctx[seg] == mm->context) {
                        pmeg_alloc[seg] = 0;