From: Gabor Juhos Date: Sat, 12 Nov 2011 10:54:16 +0000 (+0000) Subject: ar71xx: ag71xx: use fixed link parameters if the mii bus is not registered X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=726b77f2cc88376b8829f0c9dca0313f977adcbf ar71xx: ag71xx: use fixed link parameters if the mii bus is not registered SVN-Revision: 28977 --- diff --git a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c index 85f17b9feb..9b88b3d417 100644 --- a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c +++ b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_phy.c @@ -198,6 +198,10 @@ int __devinit ag71xx_phy_connect(struct ag71xx *ag) { struct ag71xx_platform_data *pdata = ag71xx_get_pdata(ag); + if (pdata->mii_bus_dev == NULL || + pdata->mii_bus_dev->bus == NULL ) + return ag71xx_phy_connect_fixed(ag); + ag->mii_bus = dev_to_mii_bus(pdata->mii_bus_dev); if (ag->mii_bus == NULL) { printk(KERN_ERR "%s: unable to find MII bus on device '%s'\n",