]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
e1000e: cleanup: remove unnecessary variable ret_val
authorBruce Allan <bruce.w.allan@intel.com>
Wed, 8 Feb 2012 02:55:25 +0000 (02:55 +0000)
committerJoe Jin <joe.jin@oracle.com>
Thu, 17 May 2012 07:49:49 +0000 (15:49 +0800)
ret_val gets initialized to -E1000_ERR_NVM and never set differently, so
get rid of it and just return -E1000_ERR_NVM.

(cherry picked from commit 55920b5eae24cfd2666f3f80bc5f2c0b3b18043b)
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>
Signed-off-by: Joe Jin <joe.jin@oracle.com>
drivers/net/e1000e/ich8lan.c

index 8bfb07528bd0ea01b8ea74bf6030d54c05067a4e..803569509c933d55f01f4816e42fe05fdaaa67e0 100644 (file)
@@ -2308,7 +2308,6 @@ static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
 {
        union ich8_hws_flash_ctrl hsflctl;
        union ich8_hws_flash_status hsfsts;
-       s32 ret_val = -E1000_ERR_NVM;
        u32 i = 0;
 
        /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */
@@ -2327,7 +2326,7 @@ static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout)
        if (hsfsts.hsf_status.flcdone == 1 && hsfsts.hsf_status.flcerr == 0)
                return 0;
 
-       return ret_val;
+       return -E1000_ERR_NVM;
 }
 
 /**