aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ohci-pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/ohci-pci.c')
-rw-r--r--drivers/usb/host/ohci-pci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/host/ohci-pci.c b/drivers/usb/host/ohci-pci.c
index ef874443aa9f..3732db7d68eb 100644
--- a/drivers/usb/host/ohci-pci.c
+++ b/drivers/usb/host/ohci-pci.c
@@ -177,6 +177,7 @@ static const struct hc_driver ohci_pci_hc_driver = {
177 .reset = ohci_pci_reset, 177 .reset = ohci_pci_reset,
178 .start = ohci_pci_start, 178 .start = ohci_pci_start,
179 .stop = ohci_stop, 179 .stop = ohci_stop,
180 .shutdown = ohci_shutdown,
180 181
181#ifdef CONFIG_PM 182#ifdef CONFIG_PM
182 /* these suspend/resume entries are for upstream PCI glue ONLY */ 183 /* these suspend/resume entries are for upstream PCI glue ONLY */
@@ -232,6 +233,8 @@ static struct pci_driver ohci_pci_driver = {
232 .suspend = usb_hcd_pci_suspend, 233 .suspend = usb_hcd_pci_suspend,
233 .resume = usb_hcd_pci_resume, 234 .resume = usb_hcd_pci_resume,
234#endif 235#endif
236
237 .shutdown = usb_hcd_pci_shutdown,
235}; 238};
236 239
237 240