From: Johan Hovold Date: Tue, 16 May 2017 14:26:13 +0000 (+0200) Subject: USB: ehci-platform: fix companion-device leak X-Git-Tag: MMI-PSA29.97-13-9~5558^2~19 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a7415477a20448bbb7d13765784c0b29249a176f;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git USB: ehci-platform: fix companion-device leak Make sure do drop the reference taken to the companion device during resume. Fixes: d4d75128b8fd ("usb: host: ehci-platform: fix usb 1.1 device is not connected in system resume") Cc: stable # 4.11 Signed-off-by: Johan Hovold Acked-by: Yoshihiro Shimoda Acked-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c index bc7b9be12f54..f1908ea9fbd8 100644 --- a/drivers/usb/host/ehci-platform.c +++ b/drivers/usb/host/ehci-platform.c @@ -384,8 +384,10 @@ static int ehci_platform_resume(struct device *dev) } companion_dev = usb_of_get_companion_dev(hcd->self.controller); - if (companion_dev) + if (companion_dev) { device_pm_wait_for_dev(hcd->self.controller, companion_dev); + put_device(companion_dev); + } ehci_resume(hcd, priv->reset_on_resume); return 0;