UPSTREAM: 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
(cherry picked from commit ae82047e97)
Signed-off-by: Will Deacon <willdeacon@google.com>
Bug: 233587962
Bug: 233588291
Change-Id: I4bf43b4c06fa43a04cacd93f406ff2d927d97c45
This commit is contained in:
Changcheng Deng
2022-02-23 09:27:50 +00:00
committed by Will Deacon
parent 7188e3f98a
commit c2dfd5f852

View File

@@ -375,7 +375,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);
@@ -437,7 +437,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)