summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChangcheng Deng <deng.changcheng@zte.com.cn>2022-02-23 09:27:50 +0000
committerMarc Zyngier <maz@kernel.org>2022-02-25 13:46:21 +0000
commitae82047e97a3014d843d4fb931922982ef625e54 (patch)
tree9a70b3e15bf5d320e466e723f8b4393a31a8d84f
parent34739fd95fab3a5efb0422e4f012b685e33598dc (diff)
downloadlinux-ae82047e97a3014d843d4fb931922982ef625e54.tar.bz2
KVM: arm64: Remove unneeded semicolons
Fix the following coccicheck review: ./arch/arm64/kvm/psci.c: 379: 3-4: Unneeded semicolon Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn> [maz: squashed another instance of the same issue in the patch] Signed-off-by: Marc Zyngier <maz@kernel.org> Acked-by: Will Deacon <will@kernel.org> Link: https://lore.kernel.org/r/20220223092750.1934130-1-deng.changcheng@zte.com.cn Link: https://lore.kernel.org/r/20220225122922.GA19390@willie-the-truck
-rw-r--r--arch/arm64/kvm/psci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/kvm/psci.c b/arch/arm64/kvm/psci.c
index ecb4b74cb12a..0d48d1e7291d 100644
--- a/arch/arm64/kvm/psci.c
+++ b/arch/arm64/kvm/psci.c
@@ -376,7 +376,7 @@ static int kvm_psci_1_x_call(struct kvm_vcpu *vcpu, u32 minor)
ret = 0;
}
break;
- };
+ }
fallthrough;
default:
return kvm_psci_0_2_call(vcpu);
@@ -438,7 +438,7 @@ int kvm_psci_call(struct kvm_vcpu *vcpu)
return kvm_psci_0_1_call(vcpu);
default:
return -EINVAL;
- };
+ }
}
int kvm_arm_get_fw_num_regs(struct kvm_vcpu *vcpu)