diff options
| author | 2008-04-25 00:31:07 -0700 | |
|---|---|---|
| committer | 2008-04-25 00:31:07 -0700 | |
| commit | cc93d7d77d28d65d4f947dabc95a01c42d713ea3 (patch) | |
| tree | bdaa01a54c7d881b7087551daf85fa52c61b3d1c /drivers/net/phy/phy.c | |
| parent | xfrm: alg_key_len & alg_icv_len should be unsigned (diff) | |
| parent | [netdrvr] tehuti: move ioctl perm check closer to function start (diff) | |
| download | wireguard-linux-cc93d7d77d28d65d4f947dabc95a01c42d713ea3.tar.xz wireguard-linux-cc93d7d77d28d65d4f947dabc95a01c42d713ea3.zip | |
Merge branch 'upstream-davem' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
Diffstat (limited to 'drivers/net/phy/phy.c')
| -rw-r--r-- | drivers/net/phy/phy.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 12fccb1c76dc..3c18bb594957 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -406,8 +406,10 @@ int phy_mii_ioctl(struct phy_device *phydev, if (mii_data->reg_num == MII_BMCR && val & BMCR_RESET - && phydev->drv->config_init) + && phydev->drv->config_init) { + phy_scan_fixups(phydev); phydev->drv->config_init(phydev); + } break; default: |
