From cf1be1167c1ba6460fdf9bfcc0101fc3618ff83c Mon Sep 17 00:00:00 2001 From: Wenzhuo Lu Date: Wed, 24 Jun 2015 11:25:56 +0800 Subject: [PATCH] ixgbe/base: fix uninitialized variable Fix the warning caused by an uninitialized variable which might have been used. Signed-off-by: Wenzhuo Lu Acked-by: Helin Zhang --- drivers/net/ixgbe/base/ixgbe_x550.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c index 2e86ea1f4e..d9d8ab395b 100644 --- a/drivers/net/ixgbe/base/ixgbe_x550.c +++ b/drivers/net/ixgbe/base/ixgbe_x550.c @@ -1648,7 +1648,7 @@ s32 ixgbe_setup_mac_link_sfp_x550em(struct ixgbe_hw *hw, { s32 ret_val; u16 reg_slice, reg_val; - bool setup_linear; + bool setup_linear = false; UNREFERENCED_1PARAMETER(autoneg_wait_to_complete); /* Configure the external PHY. */ -- 2.20.1