aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-10-31 20:10:34 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-10-31 20:10:34 +0000
commit9be77f866930fc7e7e9858958c1174b832ce6bb9 (patch)
tree4a50b77b2b95970bcbac96e4c4c6ec94837c8527 /target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch
parent5f4c7746cd3420b6352c705fd116fff18effabf2 (diff)
downloadupstream-9be77f866930fc7e7e9858958c1174b832ce6bb9.tar.gz
upstream-9be77f866930fc7e7e9858958c1174b832ce6bb9.tar.bz2
upstream-9be77f866930fc7e7e9858958c1174b832ce6bb9.zip
ixp4xx: the missing phy_disconnect call has been added in upstream, remove that patch
SVN-Revision: 18252
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch')
-rw-r--r--target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch17
1 files changed, 13 insertions, 4 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch b/target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch
index d962658122..53fa05e1b9 100644
--- a/target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch
+++ b/target/linux/ixp4xx/patches-2.6.30/205-npe_driver_separate_phy_functions.patch
@@ -99,12 +99,21 @@
if ((err = register_netdev(dev)))
goto err_phy_dis;
-@@ -1247,7 +1281,7 @@ static int __devexit eth_remove_one(stru
- struct net_device *dev = platform_get_drvdata(pdev);
- struct port *port = netdev_priv(dev);
+@@ -1230,7 +1264,7 @@ static int __devinit eth_init_one(struct
+ return 0;
+ err_phy_dis:
- phy_disconnect(port->phydev);
+ ixp4xx_phy_disconnect(dev);
+ err_free_mem:
+ npe_port_tab[NPE_ID(port->id)] = NULL;
+ platform_set_drvdata(pdev, NULL);
+@@ -1248,7 +1282,7 @@ static int __devexit eth_remove_one(stru
+ struct port *port = netdev_priv(dev);
+
unregister_netdev(dev);
- phy_disconnect(port->phydev);
+- phy_disconnect(port->phydev);
++ ixp4xx_phy_disconnect(dev);
npe_port_tab[NPE_ID(port->id)] = NULL;
+ platform_set_drvdata(pdev, NULL);
+ npe_release(port->npe);