]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
e1000e: fix error checks
authorAdrian Bunk <bunk@kernel.org>
Mon, 15 Oct 2007 21:02:21 +0000 (14:02 -0700)
committerJeff Garzik <jeff@garzik.org>
Wed, 17 Oct 2007 01:10:27 +0000 (21:10 -0400)
Spotted by the Coverity checker.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/e1000e/ethtool.c

index b7a7e2ae5e139c6f37bb5021220d943cb0f5573a..ca06c354b53c3ffc80889eacb82ab73ee3e03c7b 100644 (file)
@@ -1451,11 +1451,11 @@ static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
        }
 
        *data = e1000_setup_desc_rings(adapter);
-       if (data)
+       if (*data)
                goto out;
 
        *data = e1000_setup_loopback_test(adapter);
-       if (data)
+       if (*data)
                goto err_loopback;
 
        *data = e1000_run_loopback_test(adapter);