1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-20 12:49:18 +03:00
openwrt-xburst/target/linux/ar7/patches-2.6.32/950-cpmac_fallback_switch.patch
florian a81752b112 [ar7] refresh 2.6.32 patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23736 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-10-31 13:10:49 +00:00

15 lines
440 B
Diff

--- a/drivers/net/cpmac.c
+++ b/drivers/net/cpmac.c
@@ -1132,8 +1132,9 @@ static int __devinit cpmac_probe(struct
}
if (phy_id == PHY_MAX_ADDR) {
- dev_err(&pdev->dev, "no PHY present\n");
- return -ENODEV;
+ dev_err(&pdev->dev, "no PHY present, falling back to switch mode\n");
+ strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE); /* fixed phys bus */
+ phy_id = pdev->id;
}
dev = alloc_etherdev_mq(sizeof(*priv), CPMAC_QUEUES);