blob: 598e19ec395dc552d1d067e813a4e2a96d34983c [file] [log] [blame]
Joel Stanley136cbea2016-06-17 09:34:37 +10001From 5e361e491f83b5651d7cb4664f9919a1b9bffed3 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
4Subject: [PATCH 1/7] xhci: Use xhci_pci_remove for xhci device shutdown
5
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
13index ea4fb4b0cd44..186a544e1d1f 100644
14--- a/drivers/usb/host/xhci-pci.c
15+++ b/drivers/usb/host/xhci-pci.c
16@@ -441,7 +441,7 @@ static struct pci_driver xhci_pci_driver = {
17 .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 Stanley136cbea2016-06-17 09:34:37 +1000262.7.4
Joel Stanley34fa5c62016-05-11 13:35:01 +093027