Commit 0a29dfea authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

m68k: Fix indentation by 2 or 5 spaces in <asm/page_mm.h>



Indentation should use TABs, not spaces.
Fix whitespace in reindented code while at it.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/2819709eee2be69c93497d4e97413bd0e05a9268.1696602993.git.geert@linux-m68k.org
parent ab579eae
Loading
Loading
Loading
Loading
+22 −23
Original line number Diff line number Diff line
@@ -22,8 +22,7 @@ static inline void copy_page(void *to, void *from)
			     ".chip 68k\n\t"
			     "dbra  %2,1b\n\t"
			     : "=a" (to), "=a" (from), "=d" (tmp)
		       : "0" (to), "1" (from) , "2" (PAGE_SIZE / 32 - 1)
		       );
			     : "0" (to), "1" (from), "2" (PAGE_SIZE / 32 - 1));
}

static inline void clear_page(void *page)