diff options
author | Andy Yan | 2017-08-17 15:55:50 +0800 |
---|---|---|
committer | Tom Rini | 2017-09-12 18:00:09 -0400 |
commit | 347e30e1720ea6c0231f81d278b076a39280a314 (patch) | |
tree | 0fdd9a18fb96db8f08ec97e4fa680d9897b529f2 /arch | |
parent | 4f84cb980fdc25d7735fe114021b4a84ea601b9f (diff) |
armv8: mmu: add space around operator
Add space around operator "+", make it
match the coding style.
Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/armv8/mmu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/armv8/mmu.h b/arch/arm/include/asm/armv8/mmu.h index 77527410282..6121aab547f 100644 --- a/arch/arm/include/asm/armv8/mmu.h +++ b/arch/arm/include/asm/armv8/mmu.h @@ -16,7 +16,7 @@ #undef PAGE_SIZE #define PAGE_SHIFT 12 #define PAGE_SIZE (1 << PAGE_SHIFT) -#define PAGE_MASK (~(PAGE_SIZE-1)) +#define PAGE_MASK (~(PAGE_SIZE - 1)) /***************************************************************/ |