diff options
author | Borislav Petkov <bp@suse.de> | 2015-12-07 04:24:28 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-12-19 05:53:40 -0500 |
commit | 4baf7fe40790c8ffdab54edc8e5b7051cfce3968 (patch) | |
tree | 7a4b5856973f67fdcfc3aad1b7950d984ec75171 /arch/x86/include | |
parent | 6e1315fe82308cd29e7550eab967262e8bbc71a3 (diff) |
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>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/page_types.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/include/asm/page_types.h b/arch/x86/include/asm/page_types.h index cc071c6f7d4d..7bd0099384ca 100644 --- a/arch/x86/include/asm/page_types.h +++ b/arch/x86/include/asm/page_types.h | |||
@@ -5,9 +5,9 @@ | |||
5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
6 | 6 | ||
7 | /* PAGE_SHIFT determines the page size */ | 7 | /* PAGE_SHIFT determines the page size */ |
8 | #define PAGE_SHIFT 12 | 8 | #define PAGE_SHIFT 12 |
9 | #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) | 9 | #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) |
10 | #define PAGE_MASK (~(PAGE_SIZE-1)) | 10 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
11 | 11 | ||
12 | #define PMD_PAGE_SIZE (_AC(1, UL) << PMD_SHIFT) | 12 | #define PMD_PAGE_SIZE (_AC(1, UL) << PMD_SHIFT) |
13 | #define PMD_PAGE_MASK (~(PMD_PAGE_SIZE-1)) | 13 | #define PMD_PAGE_MASK (~(PMD_PAGE_SIZE-1)) |