]> git.itanic.dy.fi Git - linux-stable/commitdiff
m68k: sun3: Fix indentation by 5 or 7 spaces
authorGeert Uytterhoeven <geert@linux-m68k.org>
Fri, 6 Oct 2023 14:41:11 +0000 (16:41 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 16 Oct 2023 12:30:39 +0000 (14:30 +0200)
Indentation should use TABs, not spaces.
Fix whitespace in reindented code while at it.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/167216dfe9795056b7a69415695772887aca6d80.1696602993.git.geert@linux-m68k.org
arch/m68k/include/asm/sun3_pgalloc.h
arch/m68k/include/asm/tlbflush.h
arch/m68k/sun3/mmu_emu.c

index ff48573db2c04c744962daff543a0b8e750b9b9f..4a137eecb6fe44bd86135ae201e88b63020fdde4 100644 (file)
@@ -41,12 +41,12 @@ static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, pgtable_t page
 
 static inline pgd_t * pgd_alloc(struct mm_struct *mm)
 {
-     pgd_t *new_pgd;
+       pgd_t *new_pgd;
 
-     new_pgd = (pgd_t *)get_zeroed_page(GFP_KERNEL);
-     memcpy(new_pgd, swapper_pg_dir, PAGE_SIZE);
-     memset(new_pgd, 0, (PAGE_OFFSET >> PGDIR_SHIFT));
-     return new_pgd;
+       new_pgd = (pgd_t *)get_zeroed_page(GFP_KERNEL);
+       memcpy(new_pgd, swapper_pg_dir, PAGE_SIZE);
+       memset(new_pgd, 0, (PAGE_OFFSET >> PGDIR_SHIFT));
+       return new_pgd;
 }
 
 #endif /* SUN3_PGALLOC_H */
index 3ab329a03c76c8d83609458b1ab742d3792d9e8e..6d42e2906887931b0d42d50e3ee87417de01e448 100644 (file)
@@ -112,53 +112,51 @@ extern unsigned char pmeg_ctx[SUN3_PMEGS_NUM];
    sun?) */
 static inline void flush_tlb_all(void)
 {
-       unsigned long addr;
-       unsigned char ctx, oldctx;
-
-       oldctx = sun3_get_context();
-       for(addr = 0x00000000; addr < TASK_SIZE; addr += SUN3_PMEG_SIZE) {
-              for(ctx = 0; ctx < 8; ctx++) {
-                      sun3_put_context(ctx);
-                      sun3_put_segmap(addr, SUN3_INVALID_PMEG);
-              }
-       }
-
-       sun3_put_context(oldctx);
-       /* erase all of the userspace pmeg maps, we've clobbered them
-         all anyway */
-       for(addr = 0; addr < SUN3_INVALID_PMEG; addr++) {
-              if(pmeg_alloc[addr] == 1) {
-                      pmeg_alloc[addr] = 0;
-                      pmeg_ctx[addr] = 0;
-                      pmeg_vaddr[addr] = 0;
-              }
-       }
+       unsigned long addr;
+       unsigned char ctx, oldctx;
 
+       oldctx = sun3_get_context();
+       for (addr = 0x00000000; addr < TASK_SIZE; addr += SUN3_PMEG_SIZE) {
+               for (ctx = 0; ctx < 8; ctx++) {
+                       sun3_put_context(ctx);
+                       sun3_put_segmap(addr, SUN3_INVALID_PMEG);
+               }
+       }
+
+       sun3_put_context(oldctx);
+       /* erase all of the userspace pmeg maps, we've clobbered them
+          all anyway */
+       for (addr = 0; addr < SUN3_INVALID_PMEG; addr++) {
+               if (pmeg_alloc[addr] == 1) {
+                       pmeg_alloc[addr] = 0;
+                       pmeg_ctx[addr] = 0;
+                       pmeg_vaddr[addr] = 0;
+               }
+       }
 }
 
 /* Clear user TLB entries within the context named in mm */
 static inline void flush_tlb_mm (struct mm_struct *mm)
 {
-     unsigned char oldctx;
-     unsigned char seg;
-     unsigned long i;
-
-     oldctx = sun3_get_context();
-     sun3_put_context(mm->context);
+       unsigned char oldctx;
+       unsigned char seg;
+       unsigned long i;
 
-     for(i = 0; i < TASK_SIZE; i += SUN3_PMEG_SIZE) {
-            seg = sun3_get_segmap(i);
-            if(seg == SUN3_INVALID_PMEG)
-                    continue;
+       oldctx = sun3_get_context();
+       sun3_put_context(mm->context);
 
-            sun3_put_segmap(i, SUN3_INVALID_PMEG);
-            pmeg_alloc[seg] = 0;
-            pmeg_ctx[seg] = 0;
-            pmeg_vaddr[seg] = 0;
-     }
+       for (i = 0; i < TASK_SIZE; i += SUN3_PMEG_SIZE) {
+               seg = sun3_get_segmap(i);
+               if (seg == SUN3_INVALID_PMEG)
+                       continue;
 
-     sun3_put_context(oldctx);
+               sun3_put_segmap(i, SUN3_INVALID_PMEG);
+               pmeg_alloc[seg] = 0;
+               pmeg_ctx[seg] = 0;
+               pmeg_vaddr[seg] = 0;
+       }
 
+       sun3_put_context(oldctx);
 }
 
 /* Flush a single TLB page. In this case, we're limited to flushing a
index e5a92da43d1978dfe71ffeaf71ef519ed194fefe..119bd32efcfbc9d08b84aace2804b4732b9a70f8 100644 (file)
@@ -207,32 +207,32 @@ void __init mmu_emu_init(unsigned long bootmem_end)
    context for when they're cleared */
 void clear_context(unsigned long context)
 {
-     unsigned char oldctx;
-     unsigned long i;
+       unsigned char oldctx;
+       unsigned long i;
 
-     if(context) {
-            if(!ctx_alloc[context])
-                    panic("%s: context not allocated\n", __func__);
+       if (context) {
+               if (!ctx_alloc[context])
+                       panic("%s: context not allocated\n", __func__);
 
-            ctx_alloc[context]->context = SUN3_INVALID_CONTEXT;
-            ctx_alloc[context] = (struct mm_struct *)0;
-            ctx_avail++;
-     }
+               ctx_alloc[context]->context = SUN3_INVALID_CONTEXT;
+               ctx_alloc[context] = (struct mm_struct *)0;
+               ctx_avail++;
+       }
 
-     oldctx = sun3_get_context();
+       oldctx = sun3_get_context();
 
-     sun3_put_context(context);
+       sun3_put_context(context);
 
-     for(i = 0; i < SUN3_INVALID_PMEG; i++) {
-            if((pmeg_ctx[i] == context) && (pmeg_alloc[i] == 1)) {
-                    sun3_put_segmap(pmeg_vaddr[i], SUN3_INVALID_PMEG);
-                    pmeg_ctx[i] = 0;
-                    pmeg_alloc[i] = 0;
-                    pmeg_vaddr[i] = 0;
-            }
-     }
+       for (i = 0; i < SUN3_INVALID_PMEG; i++) {
+               if ((pmeg_ctx[i] == context) && (pmeg_alloc[i] == 1)) {
+                       sun3_put_segmap(pmeg_vaddr[i], SUN3_INVALID_PMEG);
+                       pmeg_ctx[i] = 0;
+                       pmeg_alloc[i] = 0;
+                       pmeg_vaddr[i] = 0;
+               }
+       }
 
-     sun3_put_context(oldctx);
+       sun3_put_context(oldctx);
 }
 
 /* gets an empty context.  if full, kills the next context listed to