|
@@ -113,12 +113,14 @@ static int mdio_mux_mmioreg_probe(struct platform_device *pdev)
|
|
if (!iprop || len != sizeof(uint32_t)) {
|
|
if (!iprop || len != sizeof(uint32_t)) {
|
|
dev_err(&pdev->dev, "mdio-mux child node %s is "
|
|
dev_err(&pdev->dev, "mdio-mux child node %s is "
|
|
"missing a 'reg' property\n", np2->full_name);
|
|
"missing a 'reg' property\n", np2->full_name);
|
|
|
|
+ of_node_put(np2);
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
}
|
|
}
|
|
if (be32_to_cpup(iprop) & ~s->mask) {
|
|
if (be32_to_cpup(iprop) & ~s->mask) {
|
|
dev_err(&pdev->dev, "mdio-mux child node %s has "
|
|
dev_err(&pdev->dev, "mdio-mux child node %s has "
|
|
"a 'reg' value with unmasked bits\n",
|
|
"a 'reg' value with unmasked bits\n",
|
|
np2->full_name);
|
|
np2->full_name);
|
|
|
|
+ of_node_put(np2);
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
}
|
|
}
|
|
}
|
|
}
|