aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Mc Guire <[email protected]>2018-06-16 09:06:33 +0200
committerPaul Burton <[email protected]>2018-07-27 19:45:15 -0700
commitb1259519e618d479ede8a0db5474b3aff99f5056 (patch)
tree99c0062b24bd2e66397d03ca5170c68e4abf7736
parent351fdddd366245c0fb4636f32edfb4198c8d6b8c (diff)
MIPS: Octeon: add missing of_node_put()
The call to of_find_node_by_name returns a node pointer with refcount incremented thus it must be explicitly decremented here after the last usage. Signed-off-by: Nicholas Mc Guire <[email protected]> Signed-off-by: Paul Burton <[email protected]> Patchwork: https://patchwork.linux-mips.org/patch/19558/ Cc: Ralf Baechle <[email protected]> Cc: James Hogan <[email protected]> Cc: [email protected] Cc: [email protected]
-rw-r--r--arch/mips/cavium-octeon/octeon-platform.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/cavium-octeon/octeon-platform.c b/arch/mips/cavium-octeon/octeon-platform.c
index 2940e9cc3a04..807cadaf554e 100644
--- a/arch/mips/cavium-octeon/octeon-platform.c
+++ b/arch/mips/cavium-octeon/octeon-platform.c
@@ -322,6 +322,7 @@ static int __init octeon_ehci_device_init(void)
return 0;
pd = of_find_device_by_node(ehci_node);
+ of_node_put(ehci_node);
if (!pd)
return 0;
@@ -384,6 +385,7 @@ static int __init octeon_ohci_device_init(void)
return 0;
pd = of_find_device_by_node(ohci_node);
+ of_node_put(ohci_node);
if (!pd)
return 0;