diff options
author | Jason Yan <[email protected]> | 2020-04-18 16:19:09 +0800 |
---|---|---|
committer | Will Deacon <[email protected]> | 2020-04-28 14:08:57 +0100 |
commit | 0dd2334fd5b99e610ceccba0e5263e6969207880 (patch) | |
tree | 914c49f5237f70da9db301e80b3f151a31d3f61a | |
parent | 1eae811da6f44a7a614ce5d33537e279ca7984fc (diff) |
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 <[email protected]>
Signed-off-by: Jason Yan <[email protected]>
Acked-by: Mark Rutland <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Will Deacon <[email protected]>
-rw-r--r-- | arch/arm64/kernel/entry-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/entry-common.c b/arch/arm64/kernel/entry-common.c index c839b5bf1904..bed09a866c2f 100644 --- a/arch/arm64/kernel/entry-common.c +++ b/arch/arm64/kernel/entry-common.c @@ -94,7 +94,7 @@ asmlinkage void notrace el1_sync_handler(struct pt_regs *regs) break; default: el1_inv(regs, esr); - }; + } } NOKPROBE_SYMBOL(el1_sync_handler); |