diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-02-12 15:10:39 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-02-12 15:10:39 +0000 |
commit | 31b2c31085b333968fc9e587163141411dd4fb2c (patch) | |
tree | ca7713e58786da32c7cfe5825b9ef49523453aae /target/linux | |
parent | e7461706402ec2392d45c15ee95764b31683d694 (diff) | |
download | upstream-31b2c31085b333968fc9e587163141411dd4fb2c.tar.gz upstream-31b2c31085b333968fc9e587163141411dd4fb2c.tar.bz2 upstream-31b2c31085b333968fc9e587163141411dd4fb2c.zip |
fix a typo in the dynamic mdio patch
SVN-Revision: 14487
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/patches-2.6.28/802-ag71xx_mdio_dynamic_mdio_bus.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/patches-2.6.28/802-ag71xx_mdio_dynamic_mdio_bus.patch b/target/linux/ar71xx/patches-2.6.28/802-ag71xx_mdio_dynamic_mdio_bus.patch index fa84e55501..9d0584a591 100644 --- a/target/linux/ar71xx/patches-2.6.28/802-ag71xx_mdio_dynamic_mdio_bus.patch +++ b/target/linux/ar71xx/patches-2.6.28/802-ag71xx_mdio_dynamic_mdio_bus.patch @@ -47,7 +47,7 @@ - snprintf(am->mii_bus.id, MII_BUS_ID_SIZE, "%x", 0); + am->mii_bus = mdiobus_alloc(); + if (am->mii_bus == NULL) { -+ err = -NOMEM; ++ err = -ENOMEM; + goto err_iounmap; + } + |