usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe
[ Upstream commit302970b4ca] of_parse_phandle() returns a node pointer with refcount incremented, we should use of_node_put() on it when not need anymore. Add missing of_node_put() to avoid refcount leak. Fixes:73108aa90c("USB: ohci-nxp: Use isp1301 driver") Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Miaoqian Lin <linmq006@gmail.com> Link: https://lore.kernel.org/r/20220603141231.979-1-linmq006@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
585d22a562
commit
d35903e965
1 changed files with 1 additions and 0 deletions
|
|
@ -164,6 +164,7 @@ static int ohci_hcd_nxp_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
isp1301_i2c_client = isp1301_get_client(isp1301_node);
|
||||
of_node_put(isp1301_node);
|
||||
if (!isp1301_i2c_client)
|
||||
return -EPROBE_DEFER;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue