Commit c11a9009 authored by David S. Miller's avatar David S. Miller

Merge branch 'dsa'

Florian Fainelli says:

====================
net: dsa: two small bug fixes

Here are two small fixes for the DSA slave interface creation code:

- first patch fixes a null pointer de-reference with an invalid PHY
  device pointer while calling phy_connect_direct()

- second path propagates the dsa_slave_phy_setup() error code down to
  its caller: dsa_slave_create
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 70e71ca0 9697f1cd
...@@ -512,7 +512,7 @@ static int dsa_slave_fixed_link_update(struct net_device *dev, ...@@ -512,7 +512,7 @@ static int dsa_slave_fixed_link_update(struct net_device *dev,
} }
/* slave device setup *******************************************************/ /* slave device setup *******************************************************/
static void dsa_slave_phy_setup(struct dsa_slave_priv *p, static int dsa_slave_phy_setup(struct dsa_slave_priv *p,
struct net_device *slave_dev) struct net_device *slave_dev)
{ {
struct dsa_switch *ds = p->parent; struct dsa_switch *ds = p->parent;
...@@ -533,7 +533,7 @@ static void dsa_slave_phy_setup(struct dsa_slave_priv *p, ...@@ -533,7 +533,7 @@ static void dsa_slave_phy_setup(struct dsa_slave_priv *p,
ret = of_phy_register_fixed_link(port_dn); ret = of_phy_register_fixed_link(port_dn);
if (ret) { if (ret) {
netdev_err(slave_dev, "failed to register fixed PHY\n"); netdev_err(slave_dev, "failed to register fixed PHY\n");
return; return ret;
} }
phy_is_fixed = true; phy_is_fixed = true;
phy_dn = port_dn; phy_dn = port_dn;
...@@ -555,12 +555,17 @@ static void dsa_slave_phy_setup(struct dsa_slave_priv *p, ...@@ -555,12 +555,17 @@ static void dsa_slave_phy_setup(struct dsa_slave_priv *p,
*/ */
if (!p->phy) { if (!p->phy) {
p->phy = ds->slave_mii_bus->phy_map[p->port]; p->phy = ds->slave_mii_bus->phy_map[p->port];
if (!p->phy)
return -ENODEV;
phy_connect_direct(slave_dev, p->phy, dsa_slave_adjust_link, phy_connect_direct(slave_dev, p->phy, dsa_slave_adjust_link,
p->phy_interface); p->phy_interface);
} else { } else {
netdev_info(slave_dev, "attached PHY at address %d [%s]\n", netdev_info(slave_dev, "attached PHY at address %d [%s]\n",
p->phy->addr, p->phy->drv->name); p->phy->addr, p->phy->drv->name);
} }
return 0;
} }
int dsa_slave_suspend(struct net_device *slave_dev) int dsa_slave_suspend(struct net_device *slave_dev)
...@@ -653,12 +658,17 @@ dsa_slave_create(struct dsa_switch *ds, struct device *parent, ...@@ -653,12 +658,17 @@ dsa_slave_create(struct dsa_switch *ds, struct device *parent,
p->old_link = -1; p->old_link = -1;
p->old_duplex = -1; p->old_duplex = -1;
dsa_slave_phy_setup(p, slave_dev); ret = dsa_slave_phy_setup(p, slave_dev);
if (ret) {
free_netdev(slave_dev);
return NULL;
}
ret = register_netdev(slave_dev); ret = register_netdev(slave_dev);
if (ret) { if (ret) {
netdev_err(master, "error %d registering interface %s\n", netdev_err(master, "error %d registering interface %s\n",
ret, slave_dev->name); ret, slave_dev->name);
phy_disconnect(p->phy);
free_netdev(slave_dev); free_netdev(slave_dev);
return NULL; return NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment