diff options
| author | Christophe JAILLET <[email protected]> | 2020-12-06 15:13:39 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2020-12-08 01:57:19 +0000 |
| commit | bbef72c630b522a9ffbf62dae19b59c880da6ea1 (patch) | |
| tree | 30f7857dc7f75f1712e10cfadc202b81c03d0ec2 | |
| parent | mptcp: print new line in mptcp_seq_show() if mptcp isn't in use (diff) | |
| download | kernel-bbef72c630b522a9ffbf62dae19b59c880da6ea1.tar.gz kernel-bbef72c630b522a9ffbf62dae19b59c880da6ea1.zip | |
dpaa2-mac: Add a missing of_node_put after of_device_is_available
Add an 'of_node_put()' call when a tested device node is not available.
Fixes: 94ae899b2096 ("dpaa2-mac: add PCS support through the Lynx module")
Signed-off-by: Christophe JAILLET <[email protected]>
Reviewed-by: Ioana Ciornei <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c b/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c index 90cd243070d7..828c177df03d 100644 --- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c +++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c @@ -269,6 +269,7 @@ static int dpaa2_pcs_create(struct dpaa2_mac *mac, if (!of_device_is_available(node)) { netdev_err(mac->net_dev, "pcs-handle node not available\n"); + of_node_put(node); return -ENODEV; } |
