]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
KVM: arm: Use PTR_ERR_OR_ZERO()
authorVasyl Gomonovych <gomonovych@gmail.com>
Tue, 28 Nov 2017 22:48:17 +0000 (23:48 +0100)
committerChristoffer Dall <christoffer.dall@linaro.org>
Tue, 2 Jan 2018 09:05:45 +0000 (10:05 +0100)
Fix ptr_ret.cocci warnings:
virt/kvm/arm/vgic/vgic-its.c:971:1-3: WARNING: PTR_ERR_OR_ZERO can be used

Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Generated by: scripts/coccinelle/api/ptr_ret.cocci

Signed-off-by: Vasyl Gomonovych <gomonovych@gmail.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
virt/kvm/arm/vgic/vgic-its.c

index 8e633bd9cc1e74706e0490419f27a20e6fa8e0b7..465095355666ec46246c29192127a6ec464f4472 100644 (file)
@@ -1034,10 +1034,8 @@ static int vgic_its_cmd_handle_mapd(struct kvm *kvm, struct vgic_its *its,
 
        device = vgic_its_alloc_device(its, device_id, itt_addr,
                                       num_eventid_bits);
-       if (IS_ERR(device))
-               return PTR_ERR(device);
 
-       return 0;
+       return PTR_ERR_OR_ZERO(device);
 }
 
 /*