ar71xx: enable TX/RX flow control on the AR7240
[openwrt.git] / target / linux / ar71xx / files / drivers / net / ag71xx / ag71xx_phy.c
index 547f72e..3e3d383 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  Atheros AR71xx built-in ethernet mac driver
  *
- *  Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
+ *  Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
  *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
  *
  *  Based on Atheros' AG7100 driver
@@ -309,9 +309,11 @@ int ag71xx_phy_connect(struct ag71xx *ag)
        }
 
        /* Reset the mdio bus explicitly */
-       mutex_lock(&ag->mii_bus->mdio_lock);
-       ag->mii_bus->reset(ag->mii_bus);
-       mutex_unlock(&ag->mii_bus->mdio_lock);
+       if (ag->mii_bus->reset) {
+               mutex_lock(&ag->mii_bus->mdio_lock);
+               ag->mii_bus->reset(ag->mii_bus);
+               mutex_unlock(&ag->mii_bus->mdio_lock);
+       }
 
        if (pdata->phy_mask)
                return ag71xx_phy_connect_multi(ag);
This page took 0.027346 seconds and 4 git commands to generate.