usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init
authorMiaoqian Lin <linmq006@gmail.com>
Tue, 6 Dec 2022 08:17:31 +0000 (12:17 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Dec 2022 15:43:34 +0000 (16:43 +0100)
commit97a48da1619ba6bd42a0e5da0a03aa490a9496b1
tree977fd2e02fe21b127cddad0fbb5f6059d64d15fd
parentdc18a4c7b3bd447cef2395deeb1f6ac16dfaca0e
usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init

of_icc_get() alloc resources for path handle, we should release it when not
need anymore. Like the release in dwc3_qcom_interconnect_exit() function.
Add icc_put() in error handling to fix this.

Fixes: bea46b981515 ("usb: dwc3: qcom: Add interconnect support in dwc3 driver")
Cc: stable <stable@kernel.org>
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Link: https://lore.kernel.org/r/20221206081731.818107-1-linmq006@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/dwc3-qcom.c