diff options
author | Christoffer Dall <christoffer.dall@linaro.org> | 2013-07-29 20:46:04 -0700 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2013-08-11 21:03:39 -0700 |
commit | 2184a60de26b94bc5a88de3e5a960ef9ff54ba5a (patch) | |
tree | 9ec2007dcacc65537bff202a7b4cee8538797e17 /arch/arm/kvm | |
parent | 979acd5e18c3e5cb7e3308c699d79553af5af8c6 (diff) |
KVM: ARM: Squash len warning
The 'len' variable was declared an unsigned and then checked for less
than 0, which results in warnings on some compilers. Since len is
assigned an int, make it an int.
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'arch/arm/kvm')
-rw-r--r-- | arch/arm/kvm/mmio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/kvm/mmio.c b/arch/arm/kvm/mmio.c index b8e06b7a2833..0c25d9487d53 100644 --- a/arch/arm/kvm/mmio.c +++ b/arch/arm/kvm/mmio.c @@ -63,7 +63,8 @@ int kvm_handle_mmio_return(struct kvm_vcpu *vcpu, struct kvm_run *run) static int decode_hsr(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa, struct kvm_exit_mmio *mmio) { - unsigned long rt, len; + unsigned long rt; + int len; bool is_write, sign_extend; if (kvm_vcpu_dabt_isextabt(vcpu)) { |