diff options
author | Tom Lendacky <thomas.lendacky@amd.com> | 2014-09-07 09:54:41 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-07 11:21:31 -0700 |
commit | a42f5c17131103ec54a71dfb7e6bb7b3704686a1 (patch) | |
tree | 5c069232c16a1980abee1a2ecf50f6a1f0fe506c /drivers/net/phy | |
parent | 8b3bfffc410268ccae137a36f1aee6024a72332c (diff) |
amd-xgbe-phy: Fix build break for missing declaration
A previous patch inadvertently deleted a declaration in the
amd_xgbe_an_tx_training function causing the build to fail.
Add the declaration for 'priv' back to the function.
Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/amd-xgbe-phy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/amd-xgbe-phy.c b/drivers/net/phy/amd-xgbe-phy.c index 4e1f7f734d2..c456559f6e7 100644 --- a/drivers/net/phy/amd-xgbe-phy.c +++ b/drivers/net/phy/amd-xgbe-phy.c @@ -638,6 +638,7 @@ static int amd_xgbe_phy_set_mode(struct phy_device *phydev, static enum amd_xgbe_phy_an amd_xgbe_an_tx_training(struct phy_device *phydev, enum amd_xgbe_phy_rx *state) { + struct amd_xgbe_phy_priv *priv = phydev->priv; int ad_reg, lp_reg, ret; *state = AMD_XGBE_RX_COMPLETE; |