usb: dwc3-am62: Fix an OF node leak in phy_syscon_pll_refclk()
authorJoe Hattori <joe@pf.is.s.u-tokyo.ac.jp>
Thu, 9 Jan 2025 00:16:38 +0000 (09:16 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Jan 2025 16:02:30 +0000 (17:02 +0100)
phy_syscon_pll_refclk() leaks an OF node obtained by
of_parse_phandle_with_fixed_args(), thus add an of_node_put() call.

Cc: stable <stable@kernel.org>
Fixes: e8784c0aec03 ("drivers: usb: dwc3: Add AM62 USB wrapper driver")
Signed-off-by: Joe Hattori <joe@pf.is.s.u-tokyo.ac.jp>
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Link: https://lore.kernel.org/r/20250109001638.70033-1-joe@pf.is.s.u-tokyo.ac.jp
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/dwc3-am62.c

index a740d3d70e87940c8d9fa0e33951f3a4c9e1a4d2..2ced686e012e8967c5106932ae9c6c97dffe7966 100644 (file)
@@ -170,6 +170,7 @@ static int phy_syscon_pll_refclk(struct dwc3_am62 *am62)
        if (ret)
                return ret;
 
+       of_node_put(args.np);
        am62->offset = args.args[0];
 
        /* Core voltage. PHY_CORE_VOLTAGE bit Recommended to be 0 always */