diff options
author | Pan Zhang <zhangpan26@huawei.com> | 2019-12-17 14:34:04 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-01-08 18:30:33 +0100 |
commit | edf90818271b86dcfcc56e0380a8f7fac6eed0cc (patch) | |
tree | 3d9be6e1b1d9f6ef09597a93d17eeed421423516 /arch/arm64/mm/pageattr.c | |
parent | arm64: Remove __exception_text_start and __exception_text_end from asm/section.h (diff) | |
download | linux-edf90818271b86dcfcc56e0380a8f7fac6eed0cc.tar.xz linux-edf90818271b86dcfcc56e0380a8f7fac6eed0cc.zip |
mm: change_memory_common: add spaces for `*` operator
Leaves one space before and after a binary operator both, it may be more elegant.
Signed-off-by: Pan Zhang <zhangpan26@huawei.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/mm/pageattr.c')
-rw-r--r-- | arch/arm64/mm/pageattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/mm/pageattr.c b/arch/arm64/mm/pageattr.c index 9ce7bd9d4d9c..250c49008d73 100644 --- a/arch/arm64/mm/pageattr.c +++ b/arch/arm64/mm/pageattr.c @@ -54,7 +54,7 @@ static int change_memory_common(unsigned long addr, int numpages, pgprot_t set_mask, pgprot_t clear_mask) { unsigned long start = addr; - unsigned long size = PAGE_SIZE*numpages; + unsigned long size = PAGE_SIZE * numpages; unsigned long end = start + size; struct vm_struct *area; int i; |