aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/cxgb3/t3_hw.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/cxgb3/t3_hw.c')
-rw-r--r--drivers/net/cxgb3/t3_hw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c
index 58a3097579f9..9d9c0bafb5c7 100644
--- a/drivers/net/cxgb3/t3_hw.c
+++ b/drivers/net/cxgb3/t3_hw.c
@@ -511,7 +511,7 @@ static const struct port_type_info port_types[] = {
511 { t3_vsc8211_phy_prep }, 511 { t3_vsc8211_phy_prep },
512 { NULL}, 512 { NULL},
513 { t3_xaui_direct_phy_prep }, 513 { t3_xaui_direct_phy_prep },
514 { NULL }, 514 { t3_ael2005_phy_prep },
515 { t3_qt2045_phy_prep }, 515 { t3_qt2045_phy_prep },
516 { t3_ael1006_phy_prep }, 516 { t3_ael1006_phy_prep },
517 { NULL }, 517 { NULL },
@@ -1728,6 +1728,8 @@ int t3_phy_intr_handler(struct adapter *adapter)
1728 t3_link_changed(adapter, i); 1728 t3_link_changed(adapter, i);
1729 if (phy_cause & cphy_cause_fifo_error) 1729 if (phy_cause & cphy_cause_fifo_error)
1730 p->phy.fifo_errors++; 1730 p->phy.fifo_errors++;
1731 if (phy_cause & cphy_cause_module_change)
1732 t3_os_phymod_changed(adapter, i);
1731 } 1733 }
1732 } 1734 }
1733 1735