Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/mm: Align macro defines

Bring PAGE_{SHIFT,SIZE,MASK} to the same indentation level as the rest
of the header.

Signed-off-by: Borislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1449480268-26583-1-git-send-email-bp@alien8.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Borislav Petkov and committed by
Thomas Gleixner
4baf7fe4 6e1315fe

+3 -3
+3 -3
arch/x86/include/asm/page_types.h
··· 5 5 #include <linux/types.h> 6 6 7 7 /* PAGE_SHIFT determines the page size */ 8 - #define PAGE_SHIFT 12 9 - #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) 10 - #define PAGE_MASK (~(PAGE_SIZE-1)) 8 + #define PAGE_SHIFT 12 9 + #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) 10 + #define PAGE_MASK (~(PAGE_SIZE-1)) 11 11 12 12 #define PMD_PAGE_SIZE (_AC(1, UL) << PMD_SHIFT) 13 13 #define PMD_PAGE_MASK (~(PMD_PAGE_SIZE-1))