Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arm64: entry: remove unneeded semicolon in el1_sync_handler()

Fix the following coccicheck warning:

arch/arm64/kernel/entry-common.c:97:2-3: Unneeded semicolon

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/20200418081909.41471-1-yanaijie@huawei.com
Signed-off-by: Will Deacon <will@kernel.org>

authored by

Jason Yan and committed by
Will Deacon
0dd2334f 1eae811d

+1 -1
+1 -1
arch/arm64/kernel/entry-common.c
··· 94 94 break; 95 95 default: 96 96 el1_inv(regs, esr); 97 - }; 97 + } 98 98 } 99 99 NOKPROBE_SYMBOL(el1_sync_handler); 100 100