Skip to content

Commit

Permalink
arm64: remove redundant blank for '=' operator
Browse files Browse the repository at this point in the history
remove redundant blank for '=' operator, it may be more elegant.

Signed-off-by: hankecai <hankecai@vivo.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
  • Loading branch information
韩科才 authored and Catalin Marinas committed Mar 17, 2020
1 parent c2f4afd commit 24b2cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm64/kernel/cpufeature.c
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ static void __init init_cpu_ftr_reg(u32 sys_reg, u64 new)

BUG_ON(!reg);

for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
for (ftrp = reg->ftr_bits; ftrp->width; ftrp++) {
u64 ftr_mask = arm64_ftr_mask(ftrp);
s64 ftr_new = arm64_ftr_value(ftrp, new);

Expand Down

0 comments on commit 24b2cce

Please sign in to comment.