]> git.baikalelectronics.ru Git - kernel.git/commit
usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe
authorMiaoqian Lin <linmq006@gmail.com>
Fri, 3 Jun 2022 14:12:30 +0000 (18:12 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Jun 2022 09:22:07 +0000 (11:22 +0200)
commit4e0a6ddcef6ac66de178e427553ef4c6e94630f0
tree4ac0ee312c10185b8fe7257f2bbd98f7e90b6b52
parenta85254b1d7fccb4deffaeb29cad6e729c9decb5c
usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe

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: 0775db4aa75f ("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>
drivers/usb/host/ohci-nxp.c