aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/sfc/tenxpress.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/sfc/tenxpress.c b/drivers/net/sfc/tenxpress.c
index ac9eeab79f20..5b0f45166628 100644
--- a/drivers/net/sfc/tenxpress.c
+++ b/drivers/net/sfc/tenxpress.c
@@ -572,15 +572,14 @@ static void tenxpress_phy_reconfigure(struct efx_nic *efx)
572static void tenxpress_phy_poll(struct efx_nic *efx) 572static void tenxpress_phy_poll(struct efx_nic *efx)
573{ 573{
574 struct tenxpress_phy_data *phy_data = efx->phy_data; 574 struct tenxpress_phy_data *phy_data = efx->phy_data;
575 bool change = false, link_ok; 575 bool change = false;
576 unsigned link_fc;
577 576
578 if (efx->phy_type == PHY_TYPE_SFX7101) { 577 if (efx->phy_type == PHY_TYPE_SFX7101) {
579 link_ok = sfx7101_link_ok(efx); 578 bool link_ok = sfx7101_link_ok(efx);
580 if (link_ok != efx->link_up) { 579 if (link_ok != efx->link_up) {
581 change = true; 580 change = true;
582 } else { 581 } else {
583 link_fc = mdio_clause45_get_pause(efx); 582 unsigned int link_fc = mdio_clause45_get_pause(efx);
584 if (link_fc != efx->link_fc) 583 if (link_fc != efx->link_fc)
585 change = true; 584 change = true;
586 } 585 }