diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-11-11 07:47:00 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-11-11 07:47:00 +0000 |
commit | ec09569b17b2d777c606f90a940b442e2baf750e (patch) | |
tree | 47606dce27273f486fa8754d06b950577afd33e9 | |
parent | aa790ea61fe17b63918b15a514f38552698fc703 (diff) | |
download | upstream-ec09569b17b2d777c606f90a940b442e2baf750e.tar.gz upstream-ec09569b17b2d777c606f90a940b442e2baf750e.tar.bz2 upstream-ec09569b17b2d777c606f90a940b442e2baf750e.zip |
ar71xx: ag71xx: fix ag71xx_probe error path
Signed-off-by: Catalin Patulea <cat@vv.carleton.ca>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 38716
-rw-r--r-- | target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c index f4d6735349..0c2163f5be 100644 --- a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c +++ b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c @@ -1197,7 +1197,7 @@ static int ag71xx_probe(struct platform_device *pdev) err = register_netdev(dev); if (err) { dev_err(&pdev->dev, "unable to register net device\n"); - goto err_phy_disconnect; + goto err_debugfs_exit; } pr_info("%s: Atheros AG71xx at 0x%08lx, irq %d, mode:%s\n", @@ -1206,6 +1206,8 @@ static int ag71xx_probe(struct platform_device *pdev) return 0; +err_debugfs_exit: + ag71xx_debugfs_exit(ag); err_phy_disconnect: ag71xx_phy_disconnect(ag); err_free_desc: |