blob: c95b263fd4faadd49fbd028eac85ec992b175c80 [file] [log] [blame]
Joel Stanley4529c8c2016-10-25 13:59:27 +10301From af96227bff765957837f3075ec478418e3dd4fd2 Mon Sep 17 00:00:00 2001
Joel Stanley34fa5c62016-05-11 13:35:01 +09302From: Thadeu Lima De Souza Cascardo <thadeul@br.ibm.com>
3Date: Tue, 25 Mar 2014 10:45:16 -0400
Joel Stanleyeeef14f2016-08-16 23:09:53 +09304Subject: [PATCH 1/9] xhci: Use xhci_pci_remove for xhci device shutdown
Joel Stanley34fa5c62016-05-11 13:35:01 +09305
6Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
7Signed-off-by: Joel Stanley <joel@jms.id.au>
8---
9 drivers/usb/host/xhci-pci.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
Joel Stanley1163cfe2016-09-07 19:07:16 +093013index 963867c2c1d5..5e6a369f635b 100644
Joel Stanley34fa5c62016-05-11 13:35:01 +093014--- a/drivers/usb/host/xhci-pci.c
15+++ b/drivers/usb/host/xhci-pci.c
Joel Stanley1163cfe2016-09-07 19:07:16 +093016@@ -447,7 +447,7 @@ static struct pci_driver xhci_pci_driver = {
Joel Stanley34fa5c62016-05-11 13:35:01 +093017 .remove = xhci_pci_remove,
18 /* suspend and resume implemented later */
19
20- .shutdown = usb_hcd_pci_shutdown,
21+ .shutdown = xhci_pci_remove,
22 #ifdef CONFIG_PM
23 .driver = {
24 .pm = &usb_hcd_pci_pm_ops
25--
Joel Stanley8f1d88e2016-08-29 16:44:12 +0930262.9.3
Joel Stanley34fa5c62016-05-11 13:35:01 +093027