From: Bruce Allan Date: Wed, 8 Feb 2012 02:55:46 +0000 (+0000) Subject: e1000e: potentially incorrect return for e1000_init_hw_ich8lan X-Git-Tag: v3.4-rc1~177^2~305^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e561a705a61e8d4c32a1259c611703a3976347aa;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git e1000e: potentially incorrect return for e1000_init_hw_ich8lan In the unlikely event that e1000_setup_link_ich8lan() returns an error, the returned error code value is not propagated to the caller of e1000_init_hw_ich8lan(). Signed-off-by: Bruce Allan Tested-by: Aaron Brown Signed-off-by: Jeff Kirsher --- diff --git a/drivers/net/ethernet/intel/e1000e/ich8lan.c b/drivers/net/ethernet/intel/e1000e/ich8lan.c index e2c546d..c4d65b8 100644 --- a/drivers/net/ethernet/intel/e1000e/ich8lan.c +++ b/drivers/net/ethernet/intel/e1000e/ich8lan.c @@ -3276,7 +3276,7 @@ static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw) */ e1000_clear_hw_cntrs_ich8lan(hw); - return 0; + return ret_val; } /** * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits