From: Julian Stecklina Date: Wed, 17 Nov 2010 03:41:36 +0000 (-0800) Subject: igbvf: Remove some dead code in igbvf X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=eca2a33c985eb19dd0ca4b37d66c7fb5d8b76308;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git igbvf: Remove some dead code in igbvf Removed unused variable in igbvf. Signed-off-by: Julian Stecklina Acked-by: Greg Rose Tested-by: Emil Tantilov Signed-off-by: Jeff Kirsher --- diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c index 1e7bfca79a58..4c998b7726da 100644 --- a/drivers/net/igbvf/netdev.c +++ b/drivers/net/igbvf/netdev.c @@ -1852,8 +1852,6 @@ static void igbvf_watchdog_task(struct work_struct *work) if (link) { if (!netif_carrier_ok(netdev)) { - bool txb2b = 1; - mac->ops.get_link_up_info(&adapter->hw, &adapter->link_speed, &adapter->link_duplex); @@ -1863,11 +1861,9 @@ static void igbvf_watchdog_task(struct work_struct *work) adapter->tx_timeout_factor = 1; switch (adapter->link_speed) { case SPEED_10: - txb2b = 0; adapter->tx_timeout_factor = 16; break; case SPEED_100: - txb2b = 0; /* maybe add some timeout factor ? */ break; }