From: Don Skidmore Date: Fri, 17 Feb 2012 07:38:13 +0000 (+0000) Subject: ixgbe: fix obvious return value bug. X-Git-Tag: v3.12-rc1~3664^2~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9cdcf098800d9549b0bf1e759f8b456baabfb939;p=kernel%2Fkernel-generic.git ixgbe: fix obvious return value bug. This is clearly a typeo where we are not checking the return value from get_link_capabilities but should. This patch corrects that. Signed-off-by: Don Skidmore Tested-by: Stephen Ko Signed-off-by: Jeff Kirsher --- diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c index 4e59083..e39df22 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c @@ -779,7 +779,8 @@ static s32 ixgbe_setup_mac_link_82599(struct ixgbe_hw *hw, ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN; /* Check to see if speed passed in is supported. */ - hw->mac.ops.get_link_capabilities(hw, &link_capabilities, &autoneg); + status = hw->mac.ops.get_link_capabilities(hw, &link_capabilities, + &autoneg); if (status != 0) goto out;