mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 20:01:55 +00:00
USB: ohci-exynos: Add missing usb_put_hcd() to prevent memory leak
When devm_usb_get_phy() fails, usb_put_hcd() should be called to prevent memory leak. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0fc924bd4e
commit
a72e2e5cc2
@ -100,6 +100,7 @@ static int exynos_ohci_probe(struct platform_device *pdev)
|
|||||||
if (IS_ERR(phy)) {
|
if (IS_ERR(phy)) {
|
||||||
/* Fallback to pdata */
|
/* Fallback to pdata */
|
||||||
if (!pdata) {
|
if (!pdata) {
|
||||||
|
usb_put_hcd(hcd);
|
||||||
dev_warn(&pdev->dev, "no platform data or transceiver defined\n");
|
dev_warn(&pdev->dev, "no platform data or transceiver defined\n");
|
||||||
return -EPROBE_DEFER;
|
return -EPROBE_DEFER;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user