diff options
Diffstat (limited to 'drivers/net/skge.c')
-rw-r--r-- | drivers/net/skge.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index f50405b4fba2..43a275d97107 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c | |||
@@ -1660,9 +1660,9 @@ static void yukon_init(struct skge_hw *hw, int port) | |||
1660 | 1660 | ||
1661 | /* Enable phy interrupt on autonegotiation complete (or link up) */ | 1661 | /* Enable phy interrupt on autonegotiation complete (or link up) */ |
1662 | if (skge->autoneg == AUTONEG_ENABLE) | 1662 | if (skge->autoneg == AUTONEG_ENABLE) |
1663 | gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_AN_COMPL); | 1663 | gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_AN_MSK); |
1664 | else | 1664 | else |
1665 | gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK); | 1665 | gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_DEF_MSK); |
1666 | } | 1666 | } |
1667 | 1667 | ||
1668 | static void yukon_reset(struct skge_hw *hw, int port) | 1668 | static void yukon_reset(struct skge_hw *hw, int port) |
@@ -1891,7 +1891,7 @@ static void yukon_link_up(struct skge_port *skge) | |||
1891 | reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA; | 1891 | reg |= GM_GPCR_RX_ENA | GM_GPCR_TX_ENA; |
1892 | gma_write16(hw, port, GM_GP_CTRL, reg); | 1892 | gma_write16(hw, port, GM_GP_CTRL, reg); |
1893 | 1893 | ||
1894 | gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_DEF_MSK); | 1894 | gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_DEF_MSK); |
1895 | skge_link_up(skge); | 1895 | skge_link_up(skge); |
1896 | } | 1896 | } |
1897 | 1897 | ||