diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2012-02-08 03:55:09 +0100 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2012-02-13 21:28:55 +0100 |
commit | 826072555b0dceac44a6e69a0c5be137e829c9d4 (patch) | |
tree | e4dc80d15dbad51450f802ec96029a6e9ef7d572 /drivers/net/ethernet/intel/e1000e/82571.c | |
parent | e1000e: cleanup: remove unnecessary assignments just before returning (diff) | |
download | linux-826072555b0dceac44a6e69a0c5be137e829c9d4.tar.xz linux-826072555b0dceac44a6e69a0c5be137e829c9d4.zip |
e1000e: cleanup: always return 0
These are a few instances of returning a value that can only be 0 so just
use a 'return 0' to make it more obvious.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/e1000e/82571.c')
-rw-r--r-- | drivers/net/ethernet/intel/e1000e/82571.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/e1000e/82571.c b/drivers/net/ethernet/intel/e1000e/82571.c index 024ac243e23f..05e9a2911168 100644 --- a/drivers/net/ethernet/intel/e1000e/82571.c +++ b/drivers/net/ethernet/intel/e1000e/82571.c @@ -796,7 +796,7 @@ static s32 e1000_update_nvm_checksum_82571(struct e1000_hw *hw) * otherwise, commit the checksum to the flash NVM. */ if (hw->nvm.type != e1000_nvm_flash_hw) - return ret_val; + return 0; /* Check for pending operations. */ for (i = 0; i < E1000_FLASH_UPDATES; i++) { |