mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
gianfar: Fix use-after-of_node_put() in gfar_of_init().
We can't put 'mdio' until after we've used it in the fsl_pq_mdio_bus_name() call. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2c60b6885a
commit
ee76db5e9e
@ -289,9 +289,9 @@ static int gfar_of_init(struct net_device *dev)
|
|||||||
id = of_get_property(phy, "reg", NULL);
|
id = of_get_property(phy, "reg", NULL);
|
||||||
|
|
||||||
of_node_put(phy);
|
of_node_put(phy);
|
||||||
of_node_put(mdio);
|
|
||||||
|
|
||||||
fsl_pq_mdio_bus_name(bus_name, mdio);
|
fsl_pq_mdio_bus_name(bus_name, mdio);
|
||||||
|
of_node_put(mdio);
|
||||||
snprintf(priv->phy_bus_id, sizeof(priv->phy_bus_id), "%s:%02x",
|
snprintf(priv->phy_bus_id, sizeof(priv->phy_bus_id), "%s:%02x",
|
||||||
bus_name, *id);
|
bus_name, *id);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user