diff options
author | Luis de Bethencourt <luisbg@kernel.org> | 2018-01-23 10:11:14 -0500 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2018-01-23 10:48:32 -0500 |
commit | b276f1b3b1eb52697f6645bb98f7d32ffb89df69 (patch) | |
tree | 3931aa454eca1042ba5d713c3591edceebb1a8c7 | |
parent | 58d6b15e9da5042a99c9c30ad725792e4569150e (diff) |
KVM: arm/arm64: Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.
Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
-rw-r--r-- | arch/arm/include/asm/kvm_emulate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/kvm_emulate.h b/arch/arm/include/asm/kvm_emulate.h index 3d22eb87f919..9003bd19cb70 100644 --- a/arch/arm/include/asm/kvm_emulate.h +++ b/arch/arm/include/asm/kvm_emulate.h | |||
@@ -131,7 +131,7 @@ static inline bool mode_has_spsr(struct kvm_vcpu *vcpu) | |||
131 | static inline bool vcpu_mode_priv(struct kvm_vcpu *vcpu) | 131 | static inline bool vcpu_mode_priv(struct kvm_vcpu *vcpu) |
132 | { | 132 | { |
133 | unsigned long cpsr_mode = vcpu->arch.ctxt.gp_regs.usr_regs.ARM_cpsr & MODE_MASK; | 133 | unsigned long cpsr_mode = vcpu->arch.ctxt.gp_regs.usr_regs.ARM_cpsr & MODE_MASK; |
134 | return cpsr_mode > USR_MODE;; | 134 | return cpsr_mode > USR_MODE; |
135 | } | 135 | } |
136 | 136 | ||
137 | static inline u32 kvm_vcpu_get_hsr(const struct kvm_vcpu *vcpu) | 137 | static inline u32 kvm_vcpu_get_hsr(const struct kvm_vcpu *vcpu) |