Skip to content

Commit

Permalink
i40e: clean up local variable initialization
Browse files Browse the repository at this point in the history
In both i40e_calc_nvm_checksum() and i40e_update_nvm_checksum(), the
local variables designated by 'ret_code' are overwritten immediately. As
such, they should merely be declared.

Signed-off-by: Jean Sacren <[email protected]>
Tested-by: Andrew Bowers <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
  • Loading branch information
sacren authored and Jeff Kirsher committed Oct 23, 2015
1 parent ed17f7e commit 0e5229c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/intel/i40e/i40e_nvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ static i40e_status i40e_write_nvm_aq(struct i40e_hw *hw, u8 module_pointer,
static i40e_status i40e_calc_nvm_checksum(struct i40e_hw *hw,
u16 *checksum)
{
i40e_status ret_code = 0;
i40e_status ret_code;
struct i40e_virt_mem vmem;
u16 pcie_alt_module = 0;
u16 checksum_local = 0;
Expand Down Expand Up @@ -564,7 +564,7 @@ static i40e_status i40e_calc_nvm_checksum(struct i40e_hw *hw,
**/
i40e_status i40e_update_nvm_checksum(struct i40e_hw *hw)
{
i40e_status ret_code = 0;
i40e_status ret_code;
u16 checksum;
__le16 le_sum;

Expand Down

0 comments on commit 0e5229c

Please sign in to comment.