i40evf: remove unnecessary error checking against i40e_shutdown_adminq
authorLihong Yang <[email protected]>
Wed, 7 Sep 2016 01:05:05 +0000 (18:05 -0700)
committerJeff Kirsher <[email protected]>
Fri, 23 Sep 2016 05:33:41 +0000 (22:33 -0700)
The i40e_shutdown_adminq function never returns failure. There is no need to
check the non-0 return value. Clean up the unnecessary error checking and
warning against it.

Change-ID: Ibb616f09cfb93bd1a872ebf3241a15fb8354b31b
Signed-off-by: Lihong Yang <[email protected]>
Tested-by: Andrew Bowers <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
drivers/net/ethernet/intel/i40evf/i40evf_main.c

index 99067757feb3ddc05acf825630fdb5b01b4e67d2..99833f3ea34ec88978ffc989dfa087308681f595 100644 (file)
@@ -1785,8 +1785,7 @@ continue_reset:
        i40evf_free_all_tx_resources(adapter);
 
        /* kill and reinit the admin queue */
-       if (i40evf_shutdown_adminq(hw))
-               dev_warn(&adapter->pdev->dev, "Failed to shut down adminq\n");
+       i40evf_shutdown_adminq(hw);
        adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
        err = i40evf_init_adminq(hw);
        if (err)