]> git.sur5r.net Git - u-boot/blobdiff - drivers/net/phy/cortina.c
Merge branch 'master' of git://git.denx.de/u-boot-net
[u-boot] / drivers / net / phy / cortina.c
index 447ecfbeb6dfe9b378d3c7c5789f33a5518b38f9..f975fd82091ff6be3e3cd55d3539f53be49d58fe 100644 (file)
@@ -257,6 +257,12 @@ int cs4340_config(struct phy_device *phydev)
        return 0;
 }
 
+int cs4340_probe(struct phy_device *phydev)
+{
+       phydev->flags = PHY_FLAG_BROKEN_RESET;
+       return 0;
+}
+
 int cs4340_startup(struct phy_device *phydev)
 {
        phydev->link = 1;
@@ -276,6 +282,7 @@ struct phy_driver cs4340_driver = {
                 MDIO_DEVS_PHYXS | MDIO_DEVS_AN |
                 MDIO_DEVS_VEND1 | MDIO_DEVS_VEND2),
        .config = &cs4340_config,
+       .probe  = &cs4340_probe,
        .startup = &cs4340_startup,
        .shutdown = &gen10g_shutdown,
 };