From 45659f705d48e8f40614fd25bb1f622fb1d494a9 Mon Sep 17 00:00:00 2001 From: Benoit Goby Date: Fri, 15 Oct 2010 14:32:21 -0700 Subject: [PATCH] usb: host: ehci-tegra: Don't power down the phy on shutdown There is no need to poweroff the phy and disable the clocks on shutdown. This interferes with autopm that may try to disable the clocks after shutdown. Change-Id: I3aee19abe6dd11685b3be348e25fc3e195a2a416 Signed-off-by: Benoit Goby --- drivers/usb/host/ehci-tegra.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c index aea114f1dc3f..2ac190b9e78f 100644 --- a/drivers/usb/host/ehci-tegra.c +++ b/drivers/usb/host/ehci-tegra.c @@ -302,9 +302,6 @@ static void tegra_ehci_shutdown(struct usb_hcd *hcd) /* call ehci shut down */ ehci_shutdown(hcd); - - /* we are ready to shut down, powerdown the phy */ - tegra_ehci_power_down(hcd); } static int tegra_ehci_setup(struct usb_hcd *hcd) -- 2.34.1