diff options
author | 2020-03-13 22:54:02 +0800 | |
---|---|---|
committer | 2020-03-17 18:22:53 +0000 | |
commit | 62b9562a1c46913349e7897c4a39c544f176b3da (patch) | |
tree | 12400eeb0cc678ac3516cdd65d6989724f5dc353 | |
parent | arm64: fix spelling mistake "ca not" -> "cannot" (diff) | |
download | linux-dev-62b9562a1c46913349e7897c4a39c544f176b3da.tar.xz linux-dev-62b9562a1c46913349e7897c4a39c544f176b3da.zip |
arm64: add blank after 'if'
add blank after 'if' for armv8_deprecated_init()
to make it comply with kernel coding style.
Signed-off-by: Zheng Wei <wei.zheng@vivo.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
-rw-r--r-- | arch/arm64/kernel/armv8_deprecated.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/armv8_deprecated.c b/arch/arm64/kernel/armv8_deprecated.c index 7832b3216370..4cc581af2d96 100644 --- a/arch/arm64/kernel/armv8_deprecated.c +++ b/arch/arm64/kernel/armv8_deprecated.c @@ -630,7 +630,7 @@ static int __init armv8_deprecated_init(void) register_insn_emulation(&cp15_barrier_ops); if (IS_ENABLED(CONFIG_SETEND_EMULATION)) { - if(system_supports_mixed_endian_el0()) + if (system_supports_mixed_endian_el0()) register_insn_emulation(&setend_ops); else pr_info("setend instruction emulation is not supported on this system\n"); |